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