程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP基礎知識 >> mysql用命令添加新用戶並分配權限

mysql用命令添加新用戶並分配權限

編輯:PHP基礎知識
 

在數據庫管理員權限下給數據庫新增某個用戶執行命令:

復制內容到剪貼板
  1. grant all privileges on test.* to franklin@'%' identified by '123';  

貼圖:


  相關參數說明:

grant 權限1,權限2,…權限n on 數據庫名稱.表名稱 to 用戶名@'用戶地址'  identified by  '密碼';
權限1,權限2,…權限n代表select,insert,update,delete,create,drop,index,alter,grant,references,reload,shutdown,process,file等14個權限。
當權限1,權限2,…權限n被all privileges或者all代替,表示賦予用戶全部權限。
grant 權限 on 數據庫.* to 用戶名@'登錄主機' identified by '密碼'
權限:
    常用總結, ALL/ALTER/CREATE/DROP/SELECT/UPDATE/DELETE
數據庫:
     *.*                    表示所有庫的所有表
     test.*                表示test庫的所有表
     test.test_table  表示test庫的test_table表   
用戶名:
     mysql賬戶名
登陸主機:
     允許登陸mysql server的客戶端ip
     '%'表示所有ip
     'localhost' 表示本機
     '192.168.10.2' 特定IP
密碼:

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