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

PostgreSQL:ordinamento condizionale

l'ordine condizionato può essere eseguito con CASE , come qui:

select *
    from test
order by 
    flag
  , case when flag then date end desc
  , case when not flag then date end asc