No especificó RDBMS, si conoce la cantidad de columnas para transformar, puede codificar los valores:
select FileId,
max(case when property = 'Name' then value end) Name,
max(case when property = 'Size' then value end) Size,
max(case when property = 'Type' then value end) Type
from yourtable
group by FileId
Esto es básicamente un PIVOT
función, algunos RDBMS tendrán un PIVOT
, si lo hace, puede usar lo siguiente, PIVOT
está disponible en SQL Server, Oracle:
select *
from
(
select FileId, Property, Value
from yourTable
) x
pivot
(
max(value)
for property in ([Name], [Size], [Type])
) p
Si tiene un número desconocido de columnas para transformar, entonces puede usar un PIVOT
dinámico . Esto obtiene la lista de columnas para transformar en tiempo de ejecución:
DECLARE @cols AS NVARCHAR(MAX),
@query AS NVARCHAR(MAX)
select @cols = STUFF((SELECT distinct ',' + QUOTENAME(property)
from yourtable
FOR XML PATH(''), TYPE
).value('.', 'NVARCHAR(MAX)')
,1,1,'')
set @query = 'SELECT ' + @cols + ' from
(
select FileId, Property, Value
from yourtable
) x
pivot
(
max(value)
for Property in (' + @cols + ')
) p '
execute(@query)