first commit

This commit is contained in:
Vitalii Litvinchuk
2026-05-04 23:15:09 +03:00
commit 6deed0469a
49 changed files with 5366 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#################################################
################ Завдання 3 ###################
--------------------------------------------------
1. Напишіть
REPLACE
запит,
який змінить вартість страви "Kabasa" з $17,
00 на $20,
00.
--------------------------------------------------
2. Відобразіть таблицю зі зміненою вартістю страви
replace into Courses set CourseName = 'Kabasa', cost = 20.00;
select * from Courses where CourseName = 'Kabasa';