Question 14
Consider a relational schema:
Parts(Pid, Pname, Price, Quantity)
Vendors (Vid, Vname, Location, Pid)
Consider the SQL query:
SELECT Distinct Vname FROM Parts NATURAL JOIN VendorsWHERE Price < 5000 and location = 'Mumbai'Choose the correct relational algebra expression(s) which will give the same output as of the above SQL query.