PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Viste PostgreSQL:riferimento a un campo calcolato in un altro campo calcolato

A seconda di quanto è pesante la formla, potresti usare una sottoquery:

select inner.*, times_two * 2 from
(select mycol * 2 as times_two from table) sub

Oppure riscrivi il calcolo:

select mycol * 2, mycol * 2 * 2 from table