mysql建立使用者並且對資料庫授權

theKingOfNight發表於2018-11-11
CREATE USER 'theKingOfNight'@'localhost' IDENTIFIED BY 'password';

這裡localhost也可以換成%,也就是可以遠端登入

GRANT ALL ON database.tadabase TO 'theKingOfNight'@'localhost';

權利一般有select,update,insert等,可以設定為all

flush privileges

立即生效

相關文章