数据库有1到100,如何查询使1到5为一组
答案:1 悬赏:30 手机版
解决时间 2021-03-24 20:28
- 提问者网友:做自己de王妃
- 2021-03-24 03:43
数据库有1到100,如何查询使1到5为一组
最佳答案
- 五星知识达人网友:琴狂剑也妄
- 2021-03-24 04:19
建了临时表和数据 直接执行就可以 看看是不是想要的
--表,数据
create table #table(num int)
declare @i int=1
while(@i<=100)
begin
insert into #table values(@i)
set @i=@i+1
end
--SQL
create table #tab (v nvarchar(50))
declare @n int=5
while (@n<=100)
begin
insert into #tab
select distinct STUFF((select ','+CONVERT(nvarchar(50),num) from
#table where num<=@n and num>@n-5 for xml path('')),1,1,'') as
num from #table
set @n=@n+5
end
select * from #tab
drop table #tab
--表,数据
create table #table(num int)
declare @i int=1
while(@i<=100)
begin
insert into #table values(@i)
set @i=@i+1
end
--SQL
create table #tab (v nvarchar(50))
declare @n int=5
while (@n<=100)
begin
insert into #tab
select distinct STUFF((select ','+CONVERT(nvarchar(50),num) from
#table where num<=@n and num>@n-5 for xml path('')),1,1,'') as
num from #table
set @n=@n+5
end
select * from #tab
drop table #tab
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯