フォーマラの重さに応じて、サブクエリを使用できます:
select inner.*, times_two * 2 from
(select mycol * 2 as times_two from table) sub
または、計算を書き直します:
select mycol * 2, mycol * 2 * 2 from table
フォーマラの重さに応じて、サブクエリを使用できます:
select inner.*, times_two * 2 from
(select mycol * 2 as times_two from table) sub
または、計算を書き直します:
select mycol * 2, mycol * 2 * 2 from table