mysql給用戶加權限的方法:先建立用戶,程式碼為【create user 使用者名稱identified by '密碼'】;然後給使用者指派權限,程式碼為【grant 權限on 資料庫.資料表to '使用者' @ '主機名稱'】。
mysql給使用者加權限的方法:
##一、Mysql下建立新的使用者
語法:create user 用户名 identified by '密码';
範例
create user xiaogang identified by '123456';
二、如何給使用者指派權限
語法:grant 权限 on 数据库.数据表 to '用户' @ '主机名';
grant all on *.* to 'xiaogang'@'%';
三、如何更精準的控制使用者的權限呢?
1、grant 權限on 資料庫.資料表to '使用者' @ '主機名稱';範例:讓xiaogang 有查詢tmp 資料庫tmp1 資料表的權限;
grant select on temp.temp1 to 'xiaogang'@'%'; //这个时候 xiaogang 就具有查询temp小的temp1的权限了。
mysql>grant select,insert,update,delete,create,drop on vtdc.employee to joe@10.163.225.87 identified by ‘123′;
mysql>grant all privileges on vtdc.* to joe@10.163.225.87 identified by ‘123′;
mysql>grant all privileges on *.* to joe@10.163.225.87 identified by ‘123′;
mysql>grant all privileges on *.* to joe@localhost identified by ‘123′;
四、如何收回權限,一般指有root使用者才具有該權限
語法:1.revoke 權限on 資料庫.資料表from '使用者'@'主機名稱';#範例:收回xiaogang的所有權限revoke all on *.* from 'xiaogang' @'%';
net stop mysql net start mysql
mysql>
grant select,insert,update,delete on *.* to user1@localhost Identified by "password1";
grant select,insert,update,delete on mydb.* to user1@localhost identified by "";
更多相關免費學習推薦:mysql教學(影片)
以上是mysql怎麼給使用者加權限的詳細內容。更多資訊請關注PHP中文網其他相關文章!