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

transformar o valor distinto de colunas em linhas postgres


Você pode usar a agregação condicional:
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;

No SQL Server, você também pode fazer algo semelhante com pivot .