Create proc Sp_Test As --易漏 Begin Declare @Count Int set @Count =0 while (@count <10000) Begin Insert into dbo.Users values ('will','123') set @Count =@Count +1 End End