I have a current mysql user who has SELECT privileges for all the table in database example. How can give that user privileges to add new tables, a
SELECT
example
GRANT SELECT, INSERT, DELETE ON database TO username@'localhost' IDENTIFIED BY 'password';
You can use UPDATE in the list too.