PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

Wie verwende ich einen ALIAS in einer PostgreSQL ORDER BY-Klausel?

Sie können jederzeit ORDER BY so:

select 
    title, 
    ( stock_one + stock_two ) as global_stock
from product
order by 2, 1

oder packen Sie es in ein weiteres 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