the employees table WHERE salary > -- Filters the rows to include only those where the salary is greater than the salary of an employee with the last name 'Bull' (SELECT salary -- Subquery: Selects the salary of an employee with the last name 'Bull' FROM employees WHERE last_name = ...