Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

UGC-NET | UGC NET CS 2018 Dec – II | Question 26

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Consider the following tables (relations) :

Primary keys in the tables are shown using Underline. Now, Consider the following query:

SELECT S.Name, Sum (P.Marks)
FROM Students S, Performance P
WHERE S.Roll-No = P.Roll-No
GROUP BY S.Name 

The number of rows returned by the above query is
(A) 3
(B) 2
(C) 0
(D) 1


Answer: (B)

Explanation: There are two groups by name : Ramesh and Mukesh. So, answer is 2.


Quiz of this Question

My Personal Notes arrow_drop_up
Last Updated : 03 Nov, 2021
Like Article
Save Article
Similar Reads