100条数据,如何分每成20行*N列显示出来

killuakidd 2013-07-23 06:21:41
有一个表有两个字段。
number name
1001 jack
............
1021 teddy
.............
1041 mary
.............
1061 jacky
.............
1081 james

查询出来结果
number name number name number name ......
1001 jack 1021 teddy 1041 mary

这里是假如有100条数据,以后会增加的,就是每20行换一次,如此类推,不用管排序


...全文
243 12 打赏 收藏 转发到动态 举报
写回复
用AI写文章
12 条回复
切换为时间正序
请发表友善的回复…
发表回复
killuakidd 2013-07-24
  • 打赏
  • 举报
回复
引用 7 楼 hdhai9451 的回复:
这个只对记录数有限的时候有效,如果数据量比较,那还得考虑用临时表和存储过程
我的代码已用了临时表,我没贴出来
killuakidd 2013-07-24
  • 打赏
  • 举报
回复
引用 9 楼 hgwyl 的回复:
如果想对比较单一的话,可以放在程序页面处理。 定义一个id_check,可以被20整除的时候输出一个换行标记,<tr>或者<br>
不一定要20,能实现功能的大约方法就行了,还有定义Id的话不如直接用rownumber
hgwyl 2013-07-24
  • 打赏
  • 举报
回复
引用 10 楼 killuakidd 的回复:
[quote=引用 9 楼 hgwyl 的回复:] 如果想对比较单一的话,可以放在程序页面处理。 定义一个id_check,可以被20整除的时候输出一个换行标记,<tr>或者<br>
不一定要20,能实现功能的大约方法就行了,还有定义Id的话不如直接用rownumber [/quote] id_check指的不是表中的ID,或者叫number_check。 明白意思了么
hgwyl 2013-07-23
  • 打赏
  • 举报
回复
如果想对比较单一的话,可以放在程序页面处理。 定义一个id_check,可以被20整除的时候输出一个换行标记,<tr>或者<br>
htl258_Tony 2013-07-23
  • 打赏
  • 举报
回复
这是100条分折十行的结果,自己参考着写就可以了

if OBJECT_ID('tb')>0 drop table tb 
go
create table tb(number int,name varchar(20))
insert tb 
select top 100 rn1=ROW_NUMBER()over(order by getdate()),ROW_NUMBER()over(order by getdate())
from master..spt_values

;with t as
(
	select rn1=(ROW_NUMBER()over(order by getdate())-1)%10+1,
		   rn2=(ROW_NUMBER()over(order by getdate())-1)/10+1,
		   *
	from tb
)
select max(case when rn1=1 then number else '' end) number, 
	max(case when rn1=1 then name else '' end) name, 
	max(case when rn1=2 then number else '' end) number, 
	max(case when rn1=2 then name else '' end) name, 
	max(case when rn1=3 then number else '' end) number,
	max(case when rn1=3 then name else '' end) name,  
	max(case when rn1=4 then number else '' end) number,
	max(case when rn1=4 then name else '' end) name, 
	max(case when rn1=5 then number else '' end) number,
	max(case when rn1=5 then name else '' end) name, 
	max(case when rn1=6 then number else '' end) number,
	max(case when rn1=6 then name else '' end) name, 
	max(case when rn1=7 then number else '' end) number,
	max(case when rn1=7 then name else '' end) name, 
	max(case when rn1=8 then number else '' end) number,
	max(case when rn1=8 then name else '' end) name, 
	max(case when rn1=9 then number else '' end) number,
	max(case when rn1=9 then name else '' end) name, 
	max(case when rn1=10 then number else '' end) number,
	max(case when rn1=10 then name else '' end) name
from t
group by rn2
/*

number      name                 number      name                 number      name                 number      name                 number      name                 number      name                 number      name                 number      name                 number      name                 number      name
----------- -------------------- ----------- -------------------- ----------- -------------------- ----------- -------------------- ----------- -------------------- ----------- -------------------- ----------- -------------------- ----------- -------------------- ----------- -------------------- ----------- --------------------
1           1                    2           2                    3           3                    4           4                    5           5                    6           6                    7           7                    8           8                    9           9                    10          10
11          11                   12          12                   13          13                   14          14                   15          15                   16          16                   17          17                   18          18                   19          19                   20          20
21          21                   22          22                   23          23                   24          24                   25          25                   26          26                   27          27                   28          28                   29          29                   30          30
31          31                   32          32                   33          33                   34          34                   35          35                   36          36                   37          37                   38          38                   39          39                   40          40
41          41                   42          42                   43          43                   44          44                   45          45                   46          46                   47          47                   48          48                   49          49                   50          50
51          51                   52          52                   53          53                   54          54                   55          55                   56          56                   57          57                   58          58                   59          59                   60          60
61          61                   62          62                   63          63                   64          64                   65          65                   66          66                   67          67                   68          68                   69          69                   70          70
71          71                   72          72                   73          73                   74          74                   75          75                   76          76                   77          77                   78          78                   79          79                   80          80
81          81                   82          82                   83          83                   84          84                   85          85                   86          86                   87          87                   88          88                   89          89                   90          90
91          91                   92          92                   93          93                   94          94                   95          95                   96          96                   97          97                   98          98                   99          99                   100         100

(10 行受影响)
*/
Andy__Huang 2013-07-23
  • 打赏
  • 举报
回复
这个只对记录数有限的时候有效,如果数据量比较,那还得考虑用临时表和存储过程
killuakidd 2013-07-23
  • 打赏
  • 举报
回复
引用 3 楼 hdhai9451 的回复:
你不是任意排序吗?所以我选随便找一个排序,你用其他字段做排序也可以
我成功查出来了,但是结果是print出来,没有字段头,而且number和name的位置距离好远。 (4096 行受影响) 10 1+2 10 1+2 10 1+2 10 1+2 10 1+2 10 1+2 10 1+2 10 1+2 10 1+2 10 1+2 10 1+2 10 1+2 10 1+2 10 1+2 10 1+2 10 1+2 10 1+2 10 1+2
killuakidd 2013-07-23
  • 打赏
  • 举报
回复
引用 2 楼 killuakidd 的回复:
[quote=引用 1 楼 hdhai9451 的回复:] declare @s varchar(8000) set @s='' select @s=@s+name+CHAR(9)+case when rn%20=0 then CHAR(13) else CHAR(9) end from (select *,ROW_NUMBER() over(order by number) as rn from tb)t print left(@s,len(@s)-1)
number不是标识列,是没规则的[/quote] 如果我的name字段改成数字成为整型int ,查询会出错,这应该怎样改一下
killuakidd 2013-07-23
  • 打赏
  • 举报
回复
引用 3 楼 hdhai9451 的回复:
你不是任意排序吗?所以我选随便找一个排序,你用其他字段做排序也可以
语法错误,我看看哪里出错
Andy__Huang 2013-07-23
  • 打赏
  • 举报
回复
你不是任意排序吗?所以我选随便找一个排序,你用其他字段做排序也可以
killuakidd 2013-07-23
  • 打赏
  • 举报
回复
引用 1 楼 hdhai9451 的回复:
declare @s varchar(8000) set @s='' select @s=@s+name+CHAR(9)+case when rn%20=0 then CHAR(13) else CHAR(9) end from (select *,ROW_NUMBER() over(order by number) as rn from tb)t print left(@s,len(@s)-1)
number不是标识列,是没规则的
Andy__Huang 2013-07-23
  • 打赏
  • 举报
回复
declare @s varchar(8000) set @s='' select @s=@s+name+CHAR(9)+case when rn%20=0 then CHAR(13) else CHAR(9) end from (select *,ROW_NUMBER() over(order by number) as rn from tb)t print left(@s,len(@s)-1)

34,588

社区成员

发帖
与我相关
我的任务
社区描述
MS-SQL Server相关内容讨论专区
社区管理员
  • 基础类社区
  • 二月十六
  • 卖水果的net
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧