我有这样的查询:
SELECT '35111212', '11245452', '42215512'...... and more values.
这导致:
(No column name) (No column name) (No column name)
-------- -------- --------
35111212 11245452 42215512
我需要将其转换为:
(No column name)
--------
35111212
11245452
42215512
这可能不使用“联盟”吗?我在select中有很多值。
答案 0 :(得分:1)
如果列名为
,则可以执行此操作select val from
(
select col1 = '1', col2 = '2', col3 = '3'
) a
unpivot
(
var for col in (col1, col2, col3)
) as unpvt