목록mysql (1)
infection...
mysql 사용자 등록 및 권한 설정(grant)
flush privileges; [GRANT 구문사용하기] mysql> grant all on *.* to '아이디'@'localhost' identified by 'PASS'; mysql> grant all on DB.* to '아이디'@'localhost' identified by 'PASS'; mysql> grant select on DB.* to '아이디'@'localhost' identified by 'PASS'; mysql> grant update on DB.* to '아이디'@'localhost' identified by 'PASS'; mysql> grant select,update on DB.* to '아이디'@'localhost' identified by 'PASS'; mysql> flu..
Develop/DATABASE
2014. 11. 3. 11:08