create database example_contacts; grant all on example_contacts.* to 'contacts_user'@'localhost' identified by 'password'; set password for 'contacts_user'@'localhost' = old_password('password'); use example_contacts; create table contacts ( id int(255) not null auto_increment, name varchar(255) not null, company varchar(255) not null, primary key (id) );