GATE Computer Science (CS) 2019 Solved Papers

© examsiri.com
Question : 61 of 65
 
Marks: +1, -0
A relational database contains two tables Student and Performance as shown below:
Student
Roll_no.Student_name
1Amit
2Priya
3Vinit
4Rohan
5Smita
Performance
Roll_no.Student_codeMarks
1A86
1B95
1C90
2A89
2C92
3C80
The primary key of the Student table is Roll_no. For the Performance table, the columns Roll_no. and Subject_code together form the primary key. Consider the SQL query given below:
SELECT S.Student_name, sum(P.Marks)
FROM Student S, Performance P
WHERE P.Marks > 84
GROUP BY S.Student_name;
The number of rows returned by the above SQL query is ________.
  • Your Answer:
Go to Question: