mysql 로그인
show databases;
use mysql;
show tabels;
grant all privileges on *.* to 아이디@'%' identified by '비밀번호';
Grand 계정 주면서 계정생성
grant all privileges on *.* TO 아이디@'%' identified by '비밀번호' with grant option;
mysql 로그인
show databases;
use mysql;
show tabels;
grant all privileges on *.* to 아이디@'%' identified by '비밀번호';
Grand 계정 주면서 계정생성
grant all privileges on *.* TO 아이디@'%' identified by '비밀번호' with grant option;