sql 将一个字段的数据分列显示
已将数据提取放入临时表#temp中现想要将列X中的数据分列显示,如下:该如何实现?谢谢!!!row_number()不是可以识别的函数名。我的是sql2000...
已将数据提取放入临时表#temp中
现想要将列X 中的数据分列显示,如下:
该如何实现?谢谢!!!
row_number() 不是可以识别的函数名。我的是sql2000 展开
现想要将列X 中的数据分列显示,如下:
该如何实现?谢谢!!!
row_number() 不是可以识别的函数名。我的是sql2000 展开
3个回答
展开全部
SQL2000不支持开窗函数row_number() ,实现这种效果可以借助存储过程。
CREATE PROCEDURE 存储过程2
AS
set nocount on
/* 创建一个临时表,利用identity 添加一个从1开始的连续标识列 */
/* x字段我设置为变长字符串型,请更改为与原始字段类型相同 */
create table #temp (id int identity,X varchar(50))
/* 将原始表中数据插入临时表 */
insert into #temp(x) select colName from tableName order by colName
/* 输出希望得到列表效果 */
/* 思路:id除4求模数根据结果将X值分别放到字段a,b,c */
/* 用(case id%4 when 1 then id + 3 when 2 then id +2 when 3 then id +1 else id end)将每4条记录标识为一组 */
/* 最后通过求分组最大值得办法得到最终列表 */
select
max(case (case id%4 when 1 then 1 when 2 then 2 when 3 then 3 else 0 end) when 1 then x else null end) as a,
max(case (case id%4 when 1 then 1 when 2 then 2 when 3 then 3 else 0 end) when 2 then x else null end) as b,
max(case (case id%4 when 1 then 1 when 2 then 2 when 3 then 3 else 0 end) when 3 then x else null end) as c,
max(case (case id%4 when 1 then 1 when 2 then 2 when 3 then 3 else 0 end) when 0 then x else null end) as d
from #temp
group by (case id%4 when 1 then id + 3 when 2 then id +2 when 3 then id +1 else id end)
set nocount off
上面代码源自下面存储过程,相对容易理解,但是由于过程里使用多一次操作查询(update)其效率也许会慢一些(但是本人未证实)
CREATE PROCEDURE 存储过程1
AS
set nocount on
create table #temp (id int identity,X nvarchar(50),idd int, flag smallint)
insert into #temp(x) select colName from tableName order by colName
update #temp set flag=case id%4 when 1 then 1 when 2 then 2 when 3 then 3 else 0 end,
idd=case id%4 when 1 then id + 3 when 2 then id +2 when 3 then id +1 else id end
select
max(case flag when 1 then x else null end) as a,
max(case flag when 2 then x else null end) as b,
max(case flag when 3 then x else null end) as c,
max(case flag when 0 then x else null end) as d
from #temp group by idd
set nocount off
CREATE PROCEDURE 存储过程2
AS
set nocount on
/* 创建一个临时表,利用identity 添加一个从1开始的连续标识列 */
/* x字段我设置为变长字符串型,请更改为与原始字段类型相同 */
create table #temp (id int identity,X varchar(50))
/* 将原始表中数据插入临时表 */
insert into #temp(x) select colName from tableName order by colName
/* 输出希望得到列表效果 */
/* 思路:id除4求模数根据结果将X值分别放到字段a,b,c */
/* 用(case id%4 when 1 then id + 3 when 2 then id +2 when 3 then id +1 else id end)将每4条记录标识为一组 */
/* 最后通过求分组最大值得办法得到最终列表 */
select
max(case (case id%4 when 1 then 1 when 2 then 2 when 3 then 3 else 0 end) when 1 then x else null end) as a,
max(case (case id%4 when 1 then 1 when 2 then 2 when 3 then 3 else 0 end) when 2 then x else null end) as b,
max(case (case id%4 when 1 then 1 when 2 then 2 when 3 then 3 else 0 end) when 3 then x else null end) as c,
max(case (case id%4 when 1 then 1 when 2 then 2 when 3 then 3 else 0 end) when 0 then x else null end) as d
from #temp
group by (case id%4 when 1 then id + 3 when 2 then id +2 when 3 then id +1 else id end)
set nocount off
上面代码源自下面存储过程,相对容易理解,但是由于过程里使用多一次操作查询(update)其效率也许会慢一些(但是本人未证实)
CREATE PROCEDURE 存储过程1
AS
set nocount on
create table #temp (id int identity,X nvarchar(50),idd int, flag smallint)
insert into #temp(x) select colName from tableName order by colName
update #temp set flag=case id%4 when 1 then 1 when 2 then 2 when 3 then 3 else 0 end,
idd=case id%4 when 1 then id + 3 when 2 then id +2 when 3 then id +1 else id end
select
max(case flag when 1 then x else null end) as a,
max(case flag when 2 then x else null end) as b,
max(case flag when 3 then x else null end) as c,
max(case flag when 0 then x else null end) as d
from #temp group by idd
set nocount off
展开全部
with t1 as (select x, row_number() over(order by X) r from #temp)
select max(case when r%4=1 then X end) a, max(case when r%4=2 then X end) b,
max(case when r%4=3 then X end) c, max(case when r%4=0 then X end) d
from t1
group by (r-1)/4
select max(case when r%4=1 then X end) a, max(case when r%4=2 then X end) b,
max(case when r%4=3 then X end) c, max(case when r%4=0 then X end) d
from t1
group by (r-1)/4
追问
row_number() 不是可以识别的函数名。我的是sql2000,该怎么处理呢?
追答
如果X值没有重的,可以使用以下语句
with t1 as (select x, (select count(*) from #temp s2 where s2.X<s1.X) r from #temp s1)
select max(case when r%4=0 then X end) a, max(case when r%4=1 then X end) b,
max(case when r%4=2 then X end) c, max(case when r%4=3 then X end) d
from t1
group by r/4
如果有重的,可以在#temp上加一列不会重复的列,如插入#temp时使用identity(int,1,1)来创建这列
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
思路如下:
1:先从X表获得数据,并获得行号 rowNumber() 可获取。
2:判断rowNumber()除以4的余数,如果为1 则放到a ,如果为2 则放到b,如果为3 则放到c,如果为4则放到d
1:先从X表获得数据,并获得行号 rowNumber() 可获取。
2:判断rowNumber()除以4的余数,如果为1 则放到a ,如果为2 则放到b,如果为3 则放到c,如果为4则放到d
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询