slightly off topic, but is it possible to grant permissions to a user on multiple tables in one sql statement in mysql?
>From mysql.com:-
GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP
-> ON bankaccount.*
-> TO custom@localhost
-> IDENTIFIED BY 'stupid';
can I do this
ON bankaccount.*,user.*,customer.*
Marty
