MySQL grant 权限,分别可以作用在多个层次上
生活随笔
收集整理的這篇文章主要介紹了
MySQL grant 权限,分别可以作用在多个层次上
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
1. grant 作用在整個(gè) MySQL 服務(wù)器上: grant select on *.* to dba@localhost; -- dba 可以查詢(xún) MySQL 中所有數(shù)據(jù)庫(kù)中的表。 grant all on *.* to dba@localhost; -- dba 可以管理 MySQL 中的所有數(shù)據(jù)庫(kù) 2. grant 作用在單個(gè)數(shù)據(jù)庫(kù)上: grant select on testdb.* to dba@localhost; -- dba 可以查詢(xún) testdb 中的表。 3. grant 作用在單個(gè)數(shù)據(jù)表上: grant select, insert, update, delete on testdb.orders to 4. grant 作用在表中的列上: grant select(id, se, rank) on testdb.apache_log to 5.MySQL grant 作用在存儲(chǔ)過(guò)程、函數(shù)上: grant execute on procedure testdb.pr_add to 'dba'@'localhost' ? grant execute on function testdb.fn_add to 'dba'@'localhost'
總結(jié)
以上是生活随笔為你收集整理的MySQL grant 权限,分别可以作用在多个层次上的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 网页中查看pdf文档
- 下一篇: 国外分享插件