Skip to content
Advertisement

How To Create Data Become Column [closed]

How do we write a SQL query for this situation? The structure of the table is;

| Room | BLOK | DATA |
|   1  |   A  |  12  |
|   2  |   A  |  13  |
|   1  |   B  |  14  |
|   3  |   B  |  15  |

Expected Output:

| Room |   A  |  B   |
|   1  |   12 |  14  |
|   2  |   13 | null |
|   3  |  null|  15  |

Advertisement

Answer

You can try using conditional aggregation

DEMO

OR Try using PIVOT

OUTPUT:

For Dynamic Pivot

FIDDLE FOR DYNAMIC PIVOT

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement