V závislosti na tom, jak těžký je formulář, můžete použít poddotaz:
select inner.*, times_two * 2 from
(select mycol * 2 as times_two from table) sub
Nebo přepište výpočet:
select mycol * 2, mycol * 2 * 2 from table
V závislosti na tom, jak těžký je formulář, můžete použít poddotaz:
select inner.*, times_two * 2 from
(select mycol * 2 as times_two from table) sub
Nebo přepište výpočet:
select mycol * 2, mycol * 2 * 2 from table