create database feherbt; use feherbt; create table employee ( id int not null primary key auto_increment, name varchar(30), city varchar(30), salary double ); grant all privileges on feherbt.* to 'feherbt'@'localhost' identified by 'titok';