How can i do a dinamic pivot table in SQl Developer ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How can i do a dinamic pivot table in SQl Developer ?

I need to do a dinamic pivot with string caracteres but i don't know how to do it, can someone help me

13th Oct 2022, 3:49 AM
Natalia Ochoa
Natalia Ochoa - avatar
2 Answers
+ 2
Your question sounds interesting to me, but I do not know the precise answer. Based on this SO thread, maybe it's only possible with PL/SQL procedure. https://stackoverflow.com/questions/15491661/dynamic-pivot-in-oracles-sql But I am really curious, can you give more detail, what is the shape of your data and what do you want to display from it. Can you give an example?
13th Oct 2022, 5:25 AM
Tibor Santa
Tibor Santa - avatar
+ 2
I use Oracle SQL Developer for this. I have someting like this: COUNTRY_NAME EMPLOYEE ---------------------------------------------------- USA Elen Abel USA Emilia Carolina UK José Lopez GERMANY David Austin USA Sarah Bell UK Alexis Bull And i need to use pivot to order like this: COUNTRY_NAME 1 2 3 ---------------------------------------------------------------------------------------------- USA Elen Abel Emilia Carolina Sarah Bell GERMANY David Austin NULL NULL UK José Lopez Alexis Bull NULL
13th Oct 2022, 5:12 PM
Natalia Ochoa
Natalia Ochoa - avatar