Hello guys,
I have a table where data is in this format:
ID Name OS
----------------------------------
10 Paul AIX
10 Paul SOLARIS
10 Paul NT
There is another column (4th) which is used for primary key, now the users want the data something like this:
ID Name AIX SOLARIS NT OS390
--------------------------------------------------------
ID Paul Y Y Y N
Is this possible and if yes, please share the SQL. Thanks.
Paul