1.添加用戶
//只容許指定ip鏈接 create user '新用戶名'@'localhost' identified by '密碼'; //容許全部ip鏈接(用通配符%表示) create user '新用戶名'@'%' identified by '密碼';
2.分配權限
grant 權限列表 on 對象列表 to 用戶@localhost identified by '密碼';
3.回收權限
revoke 權限列表 on 對象列表 from 用戶@localhost
參數: 權限列表:insert,update,delete,select,show,create,drop,alter,grant,revoke,all privileges 對象列表: 庫.表 project.news,.... project.* 某個庫下全部的表 *.* 全部的庫全部的表