I'd like to assign a user all privileges on tables which have a specific prefix, eg. 'abc_'
I'm aware of the use of the wildcard to select all tables thus:
GRANT ALL ON dbname.* TO ...
Essentially, what I'd like to do is:
GRANT ALL ON dbname.abc_* TO ...
This doesn't work so I'm wondering if there is a solution, perhaps using LIKE? (Which I've tried; as yet to no avail).