求一段T-SQL语句枚举1~33取4个数字的全组合
请用T-SQL语句从1~33中取4个不同的数字,取遍所有可能的组合,打印输出。要求4个数字从小到大打印输出。...
请用T-SQL语句从1~33中取4个不同的数字,取遍所有可能的组合,打印输出。要求4个数字从小到大打印输出。
展开
2个回答
展开全部
这个方法有很多:
先建一个表,然后插入1-33的数字:
create table a(v int)
declare @v int
set @V=1
While @v<=33
begin
insert into a select @v
set @v=@v+1
end
然后下面就可以得到结果,如果你是想要print的话那就写一个游标吧:
select * from a a1,a a2,a a3,a a4
where a1.v<a2.v and a2.v<a3.v and a3.v<a4.v
order by a1.v
还有一种方法就是写一个四层的循环,但我觉得这样写对于数据库的意义不大,也不是数据库的特长所在。如果你想要写循环的话可以Hi我
先建一个表,然后插入1-33的数字:
create table a(v int)
declare @v int
set @V=1
While @v<=33
begin
insert into a select @v
set @v=@v+1
end
然后下面就可以得到结果,如果你是想要print的话那就写一个游标吧:
select * from a a1,a a2,a a3,a a4
where a1.v<a2.v and a2.v<a3.v and a3.v<a4.v
order by a1.v
还有一种方法就是写一个四层的循环,但我觉得这样写对于数据库的意义不大,也不是数据库的特长所在。如果你想要写循环的话可以Hi我
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询