這裏是我迄今爲止使用兩種宣佈在存儲過程中的變量:SQL Server存儲過程添加兩個聲明的值總
SET @QuestionPoints = (SELECT SUM(points)
FROM tb_responses
WHERE userid = @UserId
AND id = @ID)
SET @EventPoints =(SELECT SUM(dbo.tb_events.points)
FROM dbo.tb_attendance
INNER JOIN dbo.tb_events
ON dbo.tb_attendance.eventid = dbo.tb_events.dbid
WHERE dbo.tb_attendance.userid = @UserID
AND dbo.tb_attendance.didattend = 'Y'
AND dbo.tb_events.id = @ID)
如何添加@QuestionPoints和@EventPoints一起獲得總點?我可以使用「+」添加它們並將其分配給第三個聲明變量還是隻有一個總體聲明?
感謝,
詹姆斯
這方面的一個更合適的標題會一直這樣做「兩聲明的變量「而不是價值。感謝所有反應如此迅速的人。 – James 2011-03-05 04:09:56