问题描述
解决方案
select 中心,服务站
from
(
select distinct 中心 as c,中心,'' 服务站 from [表]
union
select 中心,'' ,服务站 from [表]
) d
order by c asc,中心 desc
解决方案二:
不懂什么意思,前面插入一个空格?
这么把,我把更具体的东西放上来
我就是要实现这个效果
解决方案四:
http://ask.csdn.net/questions/222453
解决方案五:
select “”as 坞城。。。,"" as ... from 表
解决方案六:
使用 distinct 关键字
解决方案七:
select nvl2(服务站, '', 中心), 服务站
from (select distinct 中心, '' 服务站
from 表名
union
select 中心, 服务站 from test order by 中心, 服务站 desc);
时间: 2024-12-04 01:21:28