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

mysql 創建一個用戶,指定一個數據庫

編輯:MySQL綜合教程

mysql 創建一個用戶 hail,密碼 hail,指定一個數據庫 haildb 給 hail

mysql -u root -p

password

use mysql;

insert into user(host,user,password) values('localhost','hail',password('hail'));

flush privileges;

create database haildb;

grant all privileges on haildb.* to hail@localhost identified by'hail';

flush privileges;

如果想指定部分權限給用戶

grant select,update on haildb.* to hail@localhost identified by'hail';

flush privileges;

刪除用戶

deletefrom user where user='hail'and host='localhost';

flush privileges;

刪除用戶數據庫

drop database haildb;

修改指定用戶密碼

update user set password=password('new_password')where user='hail'and host='localhost';

flush privileges;

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