Question 26
Which operator can be used in a multiple-row subquery to match a single value to a list of values?
Question 27
Which type of join includes rows that do not have matching values in the joined table?
Question 28
Which SQL clause is used to specify the source table in a query?
Question 29
Which SQL statement is used to create a table?
Question 30
What does the following query return?
SELECT employee_id
FROM employees
WHERE department_id IN (SELECT department_id FROM departments WHERE location_id = 1000);
