-2
我有一個表格,我需要的結果只是UserId 11,因爲UserId 12沒有lessonId 103但仍然得到結果。T-SQL:同一列中的類似Id
SELECT *
FROM LessonList
WHERE
(LessonId = 102 and LessonValue = 1002)
or
(LessonId = 103 and LessonValue = 1003)
or
(LessonId = 102 and LessonValue = 1008)
輸出:
Id UserId LessonId LessonValue
1 11 102 1002
2 11 103 1003
3 12 102 1008
我需要的結果是這樣的:
Id UserId LessonId LessonValue
1 11 102 1002
2 11 103 1003
感謝