----删除
create proc p_Del
(
@ID int
)
as
delete from Stu where ID=@ID
go


--测试
exec p_Del 3