Just wondering if this is possible in Sybase SQL Anywhere. Ive found references to PIVOT which makes a row into a column but not the other way around.
My Table is made up of:
SEQUENCE (PKEY), LINE01, Line02, Line03, ...... Line16
1 , A , B , C , D
2 , A , B , C , D
I want to run a SELECT on this table which returns:
SEQUENCE, LINE
1 , A
1 , B
1 , C
1 , D
2 , A
2 , B
2 , C
2 , D
Is this possible?