// MySQL 서비스 시작 brew services start mysql // MySQL 접속 mysql -u root -p // DB 생성, 사용 CREATE DATABASE myDB; USE myDB;
JOIN