##常見mysql常用命令,授權和撤銷操作,趕緊收藏
–記得點讚關注喲,謝謝啦–
一.使用者授權命令:
grant 許可權 to 資料庫名.資料庫表 to 使用者
許可權:insert 增,delete 刪, select 查, update 改, create 建立, drop 刪除…
例:grant
select
onuser
to xhk
表示將user資料庫的查詢許可權授給xhk使用者
使用者後面可以加 @『ip位址』 identified by 『密碼』
例如:grant
allon*.
*to xhk@'127.0
.0.1
' identify by '
123456'
表示將所有資料庫的所有許可權授權給xhk使用者,允許xhk使用者在127.0.0.1這個ip進行遠端登陸,並設定使用者的密碼為123456
重新整理許可權:flush privileges
//授權完之後要重新整理許可權才可以生效
二.授權限一般分為另種情況下:一種是普通使用者,另一種是資料庫開發人員、運維人員
普通使用者一般就是增刪查改:
grant
select
on test.
*to xhk@'%'
//表示將test資料庫下所有表的查詢許可權授給xhk使用者
grant
insert
on test.
user
to xhk@'%'
//表示將test資料庫下的user表的查詢許可權授給xhk使用者
grant
update
on test.
*to xhk@'%
';grant delete on test.* to xhk@'
%' ;
資料庫開發人員建立表、索引、檢視、儲存過程、函式等許可權:
grant
create
on test.
*to xhk@'192.168.0.
%';grant alter on test.* to xhk@'
192.168.0.
%';grant drop on test.* to xhk@'
192.168.0.
%';
三、grant 普通 dba 管理某個 mysql 資料庫的許可權
grant
allprivileges
on testdb to dba@'localhost'
其中,關鍵字 「privileges」 可以省略。
四、grant 高階 dba 管理 mysql 中所有資料庫的許可權:
grant
allon*.
*to dba@'localhost'
五、mysql grant 許可權,分別可以作用在多個層次上
grant 作用在整個 mysql 伺服器上:
grant
selecton*
.*to dba@localhost
;-- dba 可以查詢 mysql 中所有資料庫中的表。
grant
allon*.
*to dba@localhost
;-- dba 可以管理 mysql 中的所有資料庫
grant 作用在單個資料庫上:
grant
select
on testdb.
*to dba@localhost
;-- dba 可以查詢 testdb 中的表。
grant 作用在單個資料表上:
grant
select
,insert
,update
,delete
on testdb.orders to dba@localhost
;
這裡在給乙個使用者授權多張表時,可以多次執行以上語句。例如:
grant
select
(user_id,username)
on smp.users to mo_user@'%
' identified by '
123345';
grant
select
on smp.mo_sms to mo_user@'%
' identified by '
123345';
grant 作用在表中的列上:
grant
select
(id, se, rank)
on testdb.apache_log to dba@localhost
;
grant 作用在儲存過程、函式上:
grant
execute
onprocedure testdb.pr_add to
'dba'@'localhost' ;
grant execute on function testdb.fn_add to 'dba'@'localhost' ;
六、檢視 mysql 使用者許可權
檢視當前使用者(自己)許可權:
show grants;
檢視其他 mysql 使用者許可權:
show grants for dba@localhost
;
七、撤銷已經賦予給 mysql 使用者許可權的許可權。
revoke 跟 grant 的語法差不多,只需要把關鍵字 「to」 換成 「from」 即可:
grant
allon*.
*to dba@localhost
;
revoke
allon*.
*from dba@localhost
;
八、mysql grant、revoke 使用者許可權注意事項
grant, revoke 使用者許可權後,該使用者只有重新連線 mysql 資料庫,許可權才能生效。
如果想讓授權的使用者,也可以將這些許可權 grant 給其他使用者,需要選項 「grant option「
grant
select
on testdb.
*to dba@localhost
with
grant
option
;
grant
select
on testdb.
*to dba@localhost
with
grant
option
;
這個特性一般用不到。實際中,資料庫許可權最好由 dba 來統一管理。 mysql基本常用命令 MySQL常用命令(一)
cmd提示框中的mysql基礎命令 一 命令 連線mysql伺服器 mysql h localhost u root p 展示所有資料庫 show databases 選擇資料庫 use database 展示所選資料下所有表 show tables 設定資料庫編碼 set names gbk 用s...
mysql巡檢常用命令 mysql 常用命令
客戶端連線 進入命令列,windows cmd,連線 mysql u 使用者名稱 p密碼 h 伺服器ip位址 p 伺服器端mysql埠號 d 資料庫名 注意 1 伺服器端口標誌 p一定要大些以區別於使用者 p,如果直接連線資料庫標誌 d也要大寫 2 如果要直接輸入密碼 p後面不能留有空格如 pmyp...
mysql常用命令總結 mySql常用命令總結
總結一下自己常用的mysql資料庫的常用命令 mysql u root p 進入mysql bin目錄後執行,回車後輸入密碼連線。資料庫操作 1 create database dbname 建立資料庫,資料庫名為dbname 2 create database todo default chara...