Question 6
Consider the following relations:
players(pid, name, age, jersey_no)
teams(team_name, matches, points, pid)
Choose the correct TRC or DRC expression which is equivalent to the below SQL query.
SELECT p.name, t.pointsFROM players p natural join teams tWHERE p.jersey_no = 7