- 1
How can we transpose a table using SQL (changing rows to column) ?
4 Answers
0
The usual way to do it in SQL is to use CASE statement or DECODE statement.
0
can't we use with pivot?
- 1
simply you can create temporary tables and write left outer join ,you will get multiple columns
- 2
We can use a PIVOT command but it is more complicated.