面试题不会做(写个存储过程)

2025-01-31 14:15:21
推荐回答(1个)
回答1:

给你写个简单的删除的存储过程
Create proc Pro_delete
(@ID int)
as
delete from 表名 where ID=@ID
go

就这样啊