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
+12
View File
@@ -0,0 +1,12 @@
#################################################
################ Завдання 2 ###################
--------------------------------------------------
1. Використайте дані
https://docs.google.com/spreadsheets/d/16I5INlUTo0jZ2ZyWQuBbgUkrWy5NeQtl?rtpof=true&authuser=yuriy.kotsyuk%40oa.edu.ua&usp=drive_fs
для здійснення імпорту у табицію Courses.
2. Перегляньте вміст таблиці
LOAD DATA INFILE '/var/lib/mysql-files/courses.csv' INTO
TABLE Courses FIELDS TERMINATED BY ',' ENCLOSED BY '"' LINES TERMINATED BY '\n' ignore 1 lines (CourseName, Cost, @dummy);
select * from Courses;