SQL SERVER 2008 触发器中怎么将参数传递给存储过程中的输入参数@sno
存储过程如下:createprocedureadd_record@snochar(9)asdeclare@total_numint,@cnochar(4)SETNOCOU...
存储过程如下:
create procedure add_record @sno char(9)
as
declare @total_num int,@cno char(4)
SET NOCOUNT on;
select @total_num= COUNT(*) from Student where Sno=@sno
if @total_num=0
begin
print'该学生不存在!'
return
end
else
begin
declare kecheng_cursor CURSOR FOR select cno from course
open kecheng_cousor
fetch next from kecheng_cursor into @cno
while @@FETCH_STATUS=0
begin
select @total_num=COUNT(*) from SC where Sno=@sno and Cno=@cno
if @total_num>0
begin
FETCH NEXT FROM kecheng_cousor into @cno
continue
end
else
begin
insert into SC(Sno,cno,grade)values(@sno,@cno,100*RAND())
fetch next from kecheng_cousor into @cno
end
close kecheng_cousor
deallocate kechang_cousor
end
end
GO
已有表student
要实现向student表中插入一条记录时触发存储过程,怎么获得插入的记录的sno传递给存储过程中@sno 展开
create procedure add_record @sno char(9)
as
declare @total_num int,@cno char(4)
SET NOCOUNT on;
select @total_num= COUNT(*) from Student where Sno=@sno
if @total_num=0
begin
print'该学生不存在!'
return
end
else
begin
declare kecheng_cursor CURSOR FOR select cno from course
open kecheng_cousor
fetch next from kecheng_cursor into @cno
while @@FETCH_STATUS=0
begin
select @total_num=COUNT(*) from SC where Sno=@sno and Cno=@cno
if @total_num>0
begin
FETCH NEXT FROM kecheng_cousor into @cno
continue
end
else
begin
insert into SC(Sno,cno,grade)values(@sno,@cno,100*RAND())
fetch next from kecheng_cousor into @cno
end
close kecheng_cousor
deallocate kechang_cousor
end
end
GO
已有表student
要实现向student表中插入一条记录时触发存储过程,怎么获得插入的记录的sno传递给存储过程中@sno 展开
展开全部
建立下面的触发器:
CREATE TRIGGER [TRIG_student] ON [dbo].[student]
FOR INSERT
AS
begin
declare @sno char(9)
set @sno=(select sno from inserted)
exec add_record @sno
end
CREATE TRIGGER [TRIG_student] ON [dbo].[student]
FOR INSERT
AS
begin
declare @sno char(9)
set @sno=(select sno from inserted)
exec add_record @sno
end
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
如下,sql server2008环境
USE [dm01]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER TRIGGER [dbo].[insert_student]
ON [dbo].[student]
AFTER INSERT
AS
BEGIN
SET NOCOUNT ON;
declare @sno integer
if exists(select 1 from inserted)
begin
select @sno = t.sno from inserted t
exec add_record @sno
end;
END
USE [dm01]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER TRIGGER [dbo].[insert_student]
ON [dbo].[student]
AFTER INSERT
AS
BEGIN
SET NOCOUNT ON;
declare @sno integer
if exists(select 1 from inserted)
begin
select @sno = t.sno from inserted t
exec add_record @sno
end;
END
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询