I'm using SQL Developer and currently have a table like this:
PROD | SER_NUM | PROD_DESC
Xxxx | 255236 | 'BLK'
Yyyy | 785412 | 'RED'
Zzzz | 254861 | 'BLK'
Wwww | 985465 | 'RED'
and I need to display it like this:
PROD | BLK | RED |
Xxxx | 255236 | |
Yyyy | | 785412 |
Zzzz | 254861 | |
Wwww | | 985465 |
Try this: