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

trasforma il valore distinto delle colonne in righe postgres

Puoi utilizzare l'aggregazione condizionale:

select ad_id,
       max(case when name = 'name' then valueofname end) as name,
       max(case when name = 'age' then valueofname end) as age,
       max(case when name = 'birthday' then valueofname end) as birthday,
       max(case when name = 'job' then valueofname end) as job
from t
group by ad_id;

In SQL Server puoi anche fare qualcosa di simile con pivot .