Max*_*eek 1 sql service reporting
我正在使用报告服务来制作报告图表.但是我的数据看起来像这样:
Table1
C01 C02 C03 C04
1 2 3 4
I need to do a sql query to return data that looks like this:
Any_Col_name
1
2
3
4
Run Code Online (Sandbox Code Playgroud)
我正在使用带有Oracle DB的MS Reporting Services.我不能重组这张桌子.
小智 6
select c01 from table
union all
select c02 from table
union all
select c03 from table
union all
select c04 from table
Run Code Online (Sandbox Code Playgroud)