show databases;
create database DB_NAME;
create user 'USER_NAME'@'localhost' identified by '비밀버노';
select `user` from `mysql`.`user`;
show grants for 'USER_NAME'@'localhost';
grant all on `DB_NAME`.* to 'USER_NAME'@'localhost' with grant option;
flush privileges;