$ mysql -u<유저명> -p
mysql> CREATE DATABASE <생성할 데이터베이스 이름>;
mysql> DROP DATABASE <삭제할 데이터베이스 이름>;
mysql> SHOW DATABASES;
mysql> USE <사용할 데이터베이스 이름>;