命令:grant xxx權限 on Table to USER
grant select,insert,update,delete,all on 表名 to 用戶名
例如:將test表的查詢權限賦予tom這個用戶
grant select on test to tom
grant select,insert,update,delete,all on 表名 to 用戶名
例如:將test表的查詢權限賦予tom這個用戶
grant select on test to tom