私は SQL Server を初めて使用します。2 つのコースの成績間の相互関係を見つけるのを手伝ってください。
私は、「コンピュータ プログラミング」で「A」を取得し、コンピュータ入門でも「A」を取得した生徒を見つけたいと考えています。
データは次のようになります。
RollNum | CGPA | Status | Name | Grade
410 | 2.6 | Completed | Introduction to Computer Science | A
410 | 2.6 | Completed | Computer Programming | A-
422 | 3.2 | Completed | Introduction to Computer Science | A
422 | 3.2 | Completed | Computer Programming | A
223 | 3.52 | Completed | Introduction to Computer Science | A
223 | 3.52 | Completed | Computer Programming | A
521 | 1.2 | Completed | Introduction to Computer Science | B+
521 | 1.2 | Completed | Computer Programming | A-
....
....
これは私が書いているクエリです:
SELECT [RollNum],[CGPA],[Status],[Name],[FinalGrade]
FROM db
where Name ='Introduction to Computer Science' and FinalGrade='A'
and (Name='Computer Programming' and FinalGrade= 'A' )
助けてください、よろしくお願いします。