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

15 lines
569 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.
#################################################
################ Завдання 3 ###################
--------------------------------------------------
1. Напишіть
REPLACE
запит,
який змінить вартість страви "Kabasa" з $17,
00 на $20,
00.
--------------------------------------------------
2. Відобразіть таблицю зі зміненою вартістю страви
replace into Courses set CourseName = 'Kabasa', cost = 20.00;
select * from Courses where CourseName = 'Kabasa';