GRANT with database name wildcard in MySQL?

If I use back-tics instead of single quotes in the syntax, it appears to work just fine:

grant all on `projectA\_%`.* to `projectA`@`%`;

Leave a Comment