PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

Vues PostgreSQL :référencement d'un champ calculé dans un autre champ calculé

Selon la lourdeur du formulaire, vous pouvez utiliser une sous-requête :

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

Ou réécrivez le calcul :

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