可用union all来实现。
如test表中数据如下:
现要将id为3的一条按列显示,可用如下语句:
select to_char(id) str from test where id=3union all
select name from test where id=3
查询结果:
select * from tbname行转列之后的数据:
select pud, listagg(ud, ',') within group(order by null) as udfrom tbname
group by pud
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)