PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Como usar um ALIAS em uma cláusula PostgreSQL ORDER BY?


Você sempre pode ORDER BY Por aqui:
select 
    title, 
    ( stock_one + stock_two ) as global_stock
from product
order by 2, 1

ou enrole-o em outro SELECT:
SELECT *
from
(
    select 
        title, 
        ( stock_one + stock_two ) as global_stock
    from product
) x
order by (case when global_stock = 0 then 1 else 0 end) desc, title