Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Об'єднання Результатів Таблиць | Вкладені Запити
Розширений Рівень SQL
course content

Зміст курсу

Розширений Рівень SQL

Розширений Рівень SQL

1. Групування
2. Вкладені Запити
3. Об'єднання Таблиць
4. DDL та DML в SQL

book
Об'єднання Результатів Таблиць

Завдання
test

Swipe to show code editor

Your task will be to combine the employees and contractors tables using the UNION clause.

After that, from the resulting table, you should retrieve only those IDs that are multiples of 2. Also, you need to retrieve the first_name and last_name columns. Use the syntax WHERE id % 2 = 0. For this task, you need to use subqueries in the FROM section just as shown in the example.

Note

As a result, you should have 3 columns: id (an alias for the ID from both tables), first_name, last_name.

Brief Instructions

  • Retrieve the id, first_name, and last_name columns.
  • In the FROM clause, write two inner queries joined by the UNION clause.
  • In the first inner query, select employee_id, first_name, and last_name from the employees table.
    • Assign the alias id to employee_id.
  • In the second inner query, select contractor_id, first_name, and last_name from the contractors table.
    • Assign the alias id to contractor_id.
  • Assign the alias combined to both inner queries.
  • Finally, use a WHERE clause with the condition id % 2 = 0.

Рішення

Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 2. Розділ 6
toggle bottom row

book
Об'єднання Результатів Таблиць

Завдання
test

Swipe to show code editor

Your task will be to combine the employees and contractors tables using the UNION clause.

After that, from the resulting table, you should retrieve only those IDs that are multiples of 2. Also, you need to retrieve the first_name and last_name columns. Use the syntax WHERE id % 2 = 0. For this task, you need to use subqueries in the FROM section just as shown in the example.

Note

As a result, you should have 3 columns: id (an alias for the ID from both tables), first_name, last_name.

Brief Instructions

  • Retrieve the id, first_name, and last_name columns.
  • In the FROM clause, write two inner queries joined by the UNION clause.
  • In the first inner query, select employee_id, first_name, and last_name from the employees table.
    • Assign the alias id to employee_id.
  • In the second inner query, select contractor_id, first_name, and last_name from the contractors table.
    • Assign the alias id to contractor_id.
  • Assign the alias combined to both inner queries.
  • Finally, use a WHERE clause with the condition id % 2 = 0.

Рішення

Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 2. Розділ 6
Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
We're sorry to hear that something went wrong. What happened?
some-alt