==MySQL Client 에서==

create database netflixdb;
create user 'netflix'@'localhost' identified by 'netflix1234';
grant all privileges on netflixdb.* to 'netflix'@'localhost';
flush privileges;
select host, user from mysql.user;

netflixdb 생성

ID: netflix

PW: netflix1234

==HeidiSQL 실행==

GUI로 실행가능

https://www.kaggle.com/shivamb/netflix-shows

도구 - CSV 파일 가져오기

netflix_titles.csv

show databases;
use netflixdb;
show tables;
select count(*) from netflix_list;
select * from netflix_list limit 10;

MariaDB 설정