계정 생성 create user ''@'%' identified by ''; 예) create user 'hello'@'%' identified by 'world'; 데이터베이스 생성 create database ; 예) create database helloworld; 특정 데이터베이스의 모든 권한 부여 grant all privileges on .* to ''@'%'; flush privileges; 예) grant all privileges on helloworld.* to 'hello'@'%'; flush privileges; 모든 권한 회수 revoke all on *.* from ''@'%'; 예) revoke all on *.* from 'hello'@'%';