create procedure pro9 as declare @ID int set @ID =5 while(@ID<10) begin insert into Student_information values(@ID,'lili','男') set @ID=@ID+1 end GO exec pro9 drop procedure pro9
create procedure pro9 as declare @ID int set @ID =5 while(@ID<10) begin insert into Student_information values(@ID,'lili','男') set @ID=@ID+1 end GO exec pro9 drop procedure pro9
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。