I have this pivot table:
select *
from TEST_COUNT_LINE_IMP
pivot (SUM (COUNT_CICLI) for Impiego in ([AT],[CL],[PD],[PR],[RC],[RW],[RV],[SP],[TR],[PV],[ST])) as T1
The list: [AT],[CL],[PD],[PR],[RC],[RW],[RV],[SP],[TR],[PV],[ST]
come from another table:
SELECT AFCDIMPI
FROM ANA_IMPIEGHI
The question is:
Can I replace that list with a subquery? thanks
I think you should use dynamic query in this case. I have an example of this below, hope it will help you: