CREATE TABLE IF NOT EXISTS `test` (
`a_id` int(11) NOT NULL AUTO_INCREMENT,
`b_id` varchar(40) NOT NULL,
`in_date` date NOT NULL,
`in_time` time NOT NULL,
PRIMARY KEY (`a_id`)
) ENGINE=MyISAM DEFAULT CHARSET=euckr AUTO_INCREMENT=0 ;
CREATE TABLE IF NOT EXISTS `test` (
`a_id` int(11) NOT NULL AUTO_INCREMENT,
`b_id` varchar(40) NOT NULL,
`in_date` date NOT NULL,
`in_time` time NOT NULL,
PRIMARY KEY (`a_id`)
) ENGINE=MyISAM DEFAULT CHARSET=euckr AUTO_INCREMENT=0 ;