Not sure I understand why people trying to close this question. Seems like legit question to me and not exactly a duplicate of referenced question. Referenced question has 3 columns as input, while this question has two. So there is an extra trick needed.
-- test data
declare @UserData table (Name varchar(10), JobProfile varchar(10))
insert @UserData
values
('a' , 'Admin'),
('b' , 'user'),
('c' , 'employee'),
('d' , 'Admin'),
('e' , 'user'),
('f' , 'user'),
('g' , 'employee')
-- query
select [user], [employee], [Admin]
from
(
select *, row_number() over (partition by JobProfile order by Name) RowNumber
from @UserData
) as p
pivot
(
min(Name) for JobProfile in ([user], [employee], [Admin])
) as t
order by RowNumber
The output:
user employee Admin
---------- ---------- ----------
b c a
e g d
f NULL NULL
b,c, andaon the same row in the output? That is, what rules govern the transformation? – Oded♦ Jun 11 '11 at 18:12job profilecolumn define output columns. Values in the columns correspond tonamecolumn of the input. – Alex Aza Jun 11 '11 at 18:16f,canddare in different rows, for example. – Oded♦ Jun 11 '11 at 18:19