MySQL許可權操作操作
阿新 • • 發佈:2019-02-06
查詢使用者
use mysql
show user
select user from user
建立使用者
create user '使用者名稱’@'IP地址' identifyed by '密碼' create user 'zhangsan’@'192.168.11111' identifyed by '123456' 只能在此主機上登陸 create user 'zhangsan’@'192.168.%' identifyed by '123456' 只能在字首192.168.上登入 create user 'zhangsan’@'%' identifyed by '123456' 在任何主機上均能登入
授權使用者
grant + 許可權 + on + 資料庫名.資料表明 + to '使用者名稱'
grant select, insert,update on bookdb.book to 'zhangsan'
grant all privleges on bookdb.book to 'zhangsan'