/* SQLyog v4.07 Host - 4.1.12a-nt : Database - bug ********************************************************************* Server version : 4.1.12a-nt */ create database if not exists `bug`; USE `bug`; /*Table structure for table `bug_table` */ drop table if exists `bug_table`; CREATE TABLE `bug_table` ( `ID` int(11) NOT NULL default '0', `Initial_Name` varchar(25) default NULL, PRIMARY KEY (`ID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*Data for the table `bug_table` */ insert into `bug_table` values (1,'izmir'),(2,'İZMİR'),(3,'IZMIR');