Files
sql_advanced/lab2-8-test/task6.sql
T
Vitalii Litvinchuk 6deed0469a first commit
2026-05-04 23:15:09 +03:00

17 lines
618 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#################################################
################ Завдання 6 ###################
--------------------------------------------------
1. Створіть запит, який використає підзапит для того,
щоб вивести повне імя покупців, які забронювали столик на 2021-11-11.
--------------------------------------------------
2. Здійсніть вивід
select *
from Customers
where
CustomerID in (
select CustomerID
from Bookings
where
BookingDate = '2021-11-11'
)