Excel中实现每次加1很方便,比如100,垂直向下的单元格是101,然后是102,103…选中100,101然后向下拉,拉到你想要的那个数字就OK 了。
数据库怎么办?
比如从100开始到999:
一步一步来吧,首先要能生成100到999的数字,用下面这个语句(别试,有问题)
declare @num numeric(3,0); set @num =100; while (@num <= 999) begin print @num set @num = @num+1 end运行了好一会都没停的意思,我就点取消了,下面的提示是溢出,999+1就不在numeric(3,0)范围内了,把改为numeric(4,0)试下
declare @num numeric(4,0); set @num =100; while (@num <= 999) begin print @num set @num = @num+1 end0秒0行,打印出的结果是从100到999的
那我现在想的是把结果插入到表中,那就先建个表
create table TestNum(num numeric(4,0) primary key);
然后再插入到表中,插入就是insert into,但值可以是@num变量?
不行的,原理我不知道,只是我试过了,有报错
上网搜了,用select就OK了
declare @num numeric(4,0); set @num=100; while (@num <= 999) begin insert into TestNum select @num set @num = @num+1 end;select * from TestNum;