DCL許可權控制
查詢許可權
show grants for '使用者名稱'@'主機名';
查詢某個使用者的許可權
show grants for 'hikaru39'@'localhost';
授予許可權
grant 許可權列表 on 資料庫名.表名 to '使用者名稱'@'主機名';
授予某個使用者許可權
# all, 給予資料庫itcast中所有表的許可權
grant all on itcast.* to 'hikaru39'@'localhost';
撤銷許可權
revoke 許可權列表 on 資料庫名.表名 from '使用者名稱'@'主機名';
撤銷
# *號通配資料庫itcast中所有的表
revoke all on itcast.* from 'hikaru39'@'localhost';