我有一个看起来像这样的存储过程:
create proc spInsertDrugQuestions
@drugId int
as
begin
declare @drugName varchar(50)= (select distinct drugName
from Drugs
where DrugId = @drugId)
--class question and answer
declare @drugClassQuestion varchar(250) =
'What is the drug class of your ' + @drugName
declare @drugClassAnswer varchar(50) = (select distinct drugClass
from drugs
where drugId = @drugId)
--dosage question and answer
declare @drugDosageQuestion varchar(250) =
'What is the dosage of your ' + @drugName
declare @drugDosageAnswer varchar(50) = (select distinct drugDosage
from drugs
where drugId = @drugId)
--QuizQuestionTypeId is a foreign key to another table not shown
--but indicates the general type of question (dosage, class, etc.)
insert into DrugQuestions(DrugId,DrugQuestion,CorrectAnswer,QuizQuestionTypeId)
values (@drugId,@drugClassQuestion,@drugClassAnswer,3)
,(@drugId,@drugDosageQuestion,@drugDosageAnswer,1)
end
此存储过程适用于在表格中输入新信息的最终用户,表格中将添加Drugs
相应的问题。DrugQuestions
但是,目前我需要能够为表DrugId
中当前存在的每个对象运行此存储过程Drugs
。我认为最好的方法是使用 aUDF
并CROSS APPLY
加入一个将包含每个DrugId
. 但是,我对 UDF 和以下尝试不太熟悉
create function fnInsertDrugQuestions(@drugId int)
returns int --think can't be right, but it didn't give me any read squigglies
as begin
declare @drugName varchar(50)= (select distinct drugName
from Drugs
where DrugId = @drugId)
--class question and answer
declare @drugClassQuestion varchar(250) =
'What is the drug class of your ' + @drugName
declare @drugClassAnswer varchar(50) = (select distinct drugClass
from drugs
where drugId = @drugId)
--dosage question and answer
declare @drugDosageQuestion varchar(250) =
'What is the dosage of your ' + @drugName
declare @drugDosageAnswer varchar(50) = (select distinct drugDosage
from drugs
where drugId = @drugId)
insert into DrugQuestions(DrugId,DrugQuestion,CorrectAnswer,QuizQuestionTypeId)
values (@drugId,@drugClassQuestion,@drugClassAnswer,3)
,(@drugId,@drugDosageQuestion,@drugDosageAnswer,1)
end
给我错误:
Msg 443, Level 16, State 15, Procedure fnInsertDrugQuestions, Line 21
Invalid use of a side-effecting operator 'INSERT' within a function.
Msg 455, Level 16, State 2, Procedure fnInsertDrugQuestions, Line 21
The last statement included within a function must be a return statement.
我需要知道几件事:
1.) Is it possible to insert data like this using a UDF?
2.) Is it possible to used `CROSS APPLY` with a stored procedure?
3.) Do I really want to loop through all the `DrugId`s to do this?