homework 6.2: add tasks 3-6

This commit is contained in:
2022-05-25 10:41:54 +07:00
parent 5f8b131742
commit a99efd3182
3 changed files with 161 additions and 28 deletions

View File

@@ -0,0 +1,13 @@
insert into orders (name, price) values
('Шоколад', 10),
('Принтер', 3000),
('Книга', 500),
('Монитор', 7000),
('Гитара', 4000);
insert into clients (last_name, country, order_id) values
('Иванов Иван Иванович', 'USA', null),
('Петров Петр Петрович', 'Canada', null),
('Иоганн Себастьян Бах', 'Japan', null),
('Ронни Джеймс Дио', 'Russia', null),
('Ritchie Blackmore', 'Russia', null);