drop database if exists hmm; create database hmm character set utf8 collate utf8_general_ci; use hmm; create table hmm ( source_code varchar(20), target_code varchar(20), source_term varchar(255), target_term varchar(255) ); grant all on hmm.* to 'root'@'localhost';