unpivot - Dynamic unpivoting in Oracle -
i create view unpivots wide table. this:
create view mylongtable select * mywidetable unpivot (value parameter in ( param1, param2, [continues ~200 entries] ));
now, list param1, param2, ...
should calculated dynamically. easiest way this? inner select
won't work, unfortunately. easiest me, because have param
s stored in table.
Comments
Post a Comment