在SQL server2000中的存储过程中,如何删除表中的一个记录?
2个回答
今至电子科技有限公司
2024-08-23 广告
2024-08-23 广告
数据库备份是确保数据安全与业务连续性的关键环节。我们上海今至电子科技有限公司高度重视数据保护,定期执行全面的数据库备份策略。这包括使用先进工具和技术,对关键业务数据进行自动化备份,并存储在安全可靠的外部存储介质或云端。通过定期验证备份的完整...
点击进入详情页
本回答由今至电子科技有限公司提供
展开全部
举个例子,比如说删除某个学生的相关信息
if exists(select * from sysobjects where name='del_row')
drop procedure del_row
go
create procedure del_row
@examno char(7)
as
if exists(select * from stumarks where examno=@examno)
begin
delete from stumarks where examno=@examno --这句就是删除一个记录了
end
else
begin
print '不存在你输入的准考证号!请确认'
end
go
if exists(select * from sysobjects where name='del_row')
drop procedure del_row
go
create procedure del_row
@examno char(7)
as
if exists(select * from stumarks where examno=@examno)
begin
delete from stumarks where examno=@examno --这句就是删除一个记录了
end
else
begin
print '不存在你输入的准考证号!请确认'
end
go
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询