Call function for specifying columns in SQL TRANSFORM query

后端 未结 5 1549
情歌与酒
情歌与酒 2020-12-21 05:33

Here is my query:

PARAMETERS ...
TRANSFORM ...
SELECT ...
...
PIVOT Mytable.type In (\"Other\",\"Info\");

This is a cross query and I need

5条回答
  •  Happy的楠姐
    2020-12-21 05:54

    Why not adding those headings in a table and join that table in your xtab query ?
    That's probably easier to maintain that hard coding it in a function.

提交回复
热议问题