From the following tables, write a SQL query to find those employees who work in departments located at 'United Kingdom'. Return first name
- برمجة سي كيو ال sql
- 2021-09-02
- mhanasmh00489829403
الأجوبة
SELECT first_name
FROM employees
WHERE department_id IN
(SELECT department_id
FROM departments
WHERE location_id IN
(SELECT location_id
FROM locations
WHERE country_id =
(SELECT country_id
FROM countries
WHERE country_name='United Kingdom')));
Sample Output:
first_name Susan
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال