I have this query...UPDATE LearningPathSubscription SET Progress = dbo.FuncGetLearningPathProgress(StudentsID, LearningPathID) WHERE StudentsID IN (SELECT StudentsID FROM Inserted);
And I want something like this...UPDATE LearningPathSubscription SET Progress = dbo.FuncGetLearningPathProgress(StudentsID, LearningPathID) WHERE StudentsID,CourseID IN (SELECT StudentsID,CourseID FROM Inserted);
I know that isn't possible. How do you structure the query to accomplish what I'm trying to accomplish?