MySQL grant 权限,分别可以作用在多个层次上
生活随笔
收集整理的這篇文章主要介紹了
MySQL grant 权限,分别可以作用在多个层次上
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
1. grant 作用在整個 MySQL 服務(wù)器上: grant select on *.* to dba@localhost; -- dba 可以查詢 MySQL 中所有數(shù)據(jù)庫中的表。 grant all on *.* to dba@localhost; -- dba 可以管理 MySQL 中的所有數(shù)據(jù)庫 2. grant 作用在單個數(shù)據(jù)庫上: grant select on testdb.* to dba@localhost; -- dba 可以查詢 testdb 中的表。 3. grant 作用在單個數(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 作用在存儲過程、函數(shù)上: grant execute on procedure testdb.pr_add to 'dba'@'localhost' ? grant execute on function testdb.fn_add to 'dba'@'localhost'
總結(jié)
以上是生活随笔為你收集整理的MySQL grant 权限,分别可以作用在多个层次上的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 网页中查看pdf文档
- 下一篇: MySQL 直接存储图片并在 html