我有一个表student(int ID, nvarchar(10) studentName)
和一个表用户类型myStudentType (int ID, nvarchar(10) studentName)
我需要创建一个接受myStudentType
参数 ( @students
) 和参数的存储过程@newname
mySp(@students myStudentType, @newname nvarchar(10))
并与学生合并myStudentType
,以便两个表上存在的所有具有 id 的行现在都将在学生表中具有studentName
- @newname
(参数),并且 sp 将返回 @students 中未在学生中更新的所有记录的列表桌子
最好的方法是什么(最好使用合并)
谢谢