I want to display the results horizontally.
This is the table sample data:
type unite Item_ID
-------------------------- ---------------- -----------
First NULL 1
First NULL 2
First NULL 3
Second Unite1 1
Second Unite2 2
Second NULL 3
and I want to display the data like this :
Type Item_unite_ID 1 Item_unite_ID 2 Item_unite_ID 3
-------------------- ------------------------- --------------------- -----------
First NULL NULL NULL
Second Unite1 Unite2 NULL
How I can do that?