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

 

  

相关文章:

  • 2022-12-23
  • 2021-08-24
  • 2021-05-25
  • 2021-11-18
  • 2021-12-23
  • 2021-08-08
猜你喜欢
  • 2021-06-04
  • 2022-12-23
  • 2021-12-23
  • 2022-12-23
  • 2021-12-25
  • 2022-12-23
  • 2021-12-25
相关资源
相似解决方案