正如here和here所述,我们可以在向用户授予权限时使用通配符。
grant all on `someSchema\_%`.* to `someUser`@`%`;
虽然通配符不能应用于表名,即
grant all on `someSchema\_%`.`someTable%` to `someUser`@`%`;
grant all on `someSchema\_%`.`someTable\_` to `someUser`@`%`;
我的google search结果没有用,所以我在这里问一下 - 我们如何在MySQL wildcard
命令中使用GRANT
BOTH模式名称和表名?