程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> mysql添加用戶、更改密碼

mysql添加用戶、更改密碼

編輯:MySQL綜合教程

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"

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved