Anyways I want to create a mysql account/login (user=bob pass=bill) then I want to grant all priveliges to this account on a database called "userlist". what should I be typing, this is what i am currently using.
CREATE USER bob IDENTIFIED BY PASSWORD("bill");
GRANT ALL ON userlist.* TO bob IDENTIFIED BY PASSWORD 'bill';
Sorry about this