mysql添加用戶方法
建立數據庫gamesp
create database gamesp;
添加用戶
grant all on 數據庫名.* to 用戶名@localhost identified by '密碼';
grant all on gamesp.* to newuser@localhost identified by 'password';
說明:
(1)grant all 賦予所有的權限
(2)gamesp.* 數據庫 gamesp 中所有的表
(3)newuser 用戶名
(4)@localhost 在本地電腦上的 mysql server 服務器
(5)identfified by 'password' 設置密碼
刪除用戶
use mysql
mysql>Delete FROM user Where User="xxxxx" and Host="localhost";
mysql>flush privileges;
修改密碼
mysqladmin -uroot -plk317921web password "111111"