our work has been saved and submitted Written Feb 16, 2025 5:01 PM - Feb 16, 2025 5:15 PM Attempt 1 of 2 Attempt Score 20 / 20 - 100 % Overall Grade (Highest Attempt) 20 / 20 - 100 % Question 1 2 / 2 points A join in which the joining condition is based on equality between values in the common columns is called a(n): Question options: A) equi-join. B) unilateral join. C) natural join. D) both equi-join. and natural join. . Question 2 2 / 2 points The following code is an example of a(n): SELECT Customer_T.CustomerID, Order_T.CustomerID, CustomerName, OrderID FROM Customer_T, Order_T WHERE Customer_T.CustomerID = Order_T. CustomerID; Question options: A) equi-join. B) subquery. C) Full Outer JOIN. D) Right Outer JOIN. Question 3 2 / 2 points The following code would include: SELECT Customer_T.CustomerID,CustomerName, OrderID FROM Customer_T LEFT OUTER JOIN Order_T ON Custome...