I am totally new to mysql. I requested my hosting company to setup mysql account for me. They want me to name the database, permission and the supply them with the code. How do I do it. Please help.
Hello, To create the DB, it would be this:
create database 'dbname';
To add a user: grant all on dbname.* to username@'%' identified by 'password';
Bill