Direction: Choose the correct option
Q1.
What is a CROSS JOIN?
Direction: Choose the correct option
Q2.
SELECT * FROM colors CROSS JOIN sizes;How many rows result if colors has 5 rows and sizes has 4?Direction: Choose the correct option
Q3.
When would you use CROSS JOIN?
Direction: Choose the correct option
Q4.
SELECT * FROM employees e, departments d WHERE e.dept_id = d.dept_id;What does this old syntax represent?Direction: Choose the correct option
Q5.
SELECT * FROM dates CROSS JOIN time_slots;What might this be used for?