我对以下帖子有疑问,我会添加它,但由于我是新手,它不会让我这样做。
编辑以添加特定类型的表格和更好的信息
我在下面有两个表,并希望完成将 studentname 的 tblnames 转换为 tblCombineNames 转换为 Student 姓名。
请指教,谢谢!
表名
ID(PK) StudentType(FK) StudentNo(FK) GradeNo(FK) StudentName
---------- ---------- ---------- ---------- -------------
1 1 1 1 Mary
2 1 1 1 John
3 1 1 1 Sam
4 2 2 2 Alaina
5 2 2 2 Edward
6 2 2 2 Joe
我希望输出低于
TblCombineNames
ID(PK) StudentType(PK) StudentNo(PK) GradeNo(PK) StudentNames
---------- ---------- ---------- ---------- -------------
1 1 1 1 Mary, John, Sam
2 2 2 2 Alaina, Edward, Joe
我会有一个标量值函数,命名为
---dbo.fn_Concatenate_Names
ALTER FUNCTION [dbo].[fn_Concatenate_Names]
(
@StudentType VARCHAR(250),
@StudentNo VARCHAR(250),
@GradeNo VARCHAR(250)
)
RETURNS Varchar(250)
BEGIN
Declare @rtn Varchar(250)
BEGIN
Select @rtn=(
Select StudentNames + ', ' as 'data()'
from tblStudentnames
where studentType = @StudentType and StudentNo = @StudentNo and GradeNo = @GradeNo
for XML path('')
)
Set @rtn = LEFT(@rtn, Len(@rtn) - 1)
END
RETURN (@rtn)
END
我会在更新时调用该函数
update tblCombineNames
set studentnames = fn_concatenate_names(StudentType,StudentNo,GradeNo)
看起来它可以工作,但在 250730 条记录的 tblStudentNames 上运行需要 2 小时。我不认为应该花那么长时间。