계정을 생성하게 되면 계정생성과 권한부여를 동시에 이루어집니다
mysql> create database ${ID} ;
mysql> use mysql;
mysql> grant all privileges on ${ID}.* to ${ID}@localhost identified by '${PASS}' with grant option;
mysql> flush privileges;