连续插入号码
数据库表:“电话卡”的结构:如下
卡号(数值型,长度8)面值(数值型,长度5)
要求:1.已知 ":11000007、11000015、100的,自动把数据插入到“电话卡”中
卡号面值
11000007100
11000008100
11000009100
11000010100
11000011100
11000012100
11000013100
11000014100
11000015100
2.根据11000007、
要生成卡的张数:9
面值为100的,
自动把数据插入到“电话卡”中
卡号面值
11000007100
11000008100
11000009100
11000010100
11000011100
11000012100
11000013100
11000014100
11000015100
[解决办法]
晕,没看是数值型.
create procedure protest
@startid numeric,
@endid numeric,
@val numeric,
as
while @startid <endid
begin
insert into table (col1,col2) values(@startid,@val)
set @startid=@startid+1
end