Page 1 of 1

Consider the following relational algebraic expression: Which of the following SQL statements is equivalent to this rela

Posted: Sat Jul 23, 2022 7:29 pm
by answerhappygod
Consider the following relational algebraic expression: Which of the following SQL statements is equivalent to this relational algebraic expression?
Consider The Fo 1
Consider The Fo 1 (33.35 KiB) Viewed 71 times
A. SELECT * FROM Customers, Employees WHERE Sales_Rep_No = Cust_No;
B. SELECT Cust_No, Cust_Name, Emp_Name, Emp_Loc FROM Customers, Employees WHERE Customers.Sales_Rep_No = Employees.Sales_Rep_No;
C. SELECT Cust_No, Cust_Name, Emp_Name, Emp_Loc FROM Customers, Employees WHERE Employees.Sales_Rep_No = Customers.Sales_Rep_No;
D. SELECT * FROM Customers, Employees WHERE Customers.Sales_Rep_No = Employees.Sales_Rep_No;