CREATE DATABASE `test` /*!40100 DEFAULT CHARACTER SET latin1 */; DROP TABLE IF EXISTS `test`.`extable_1`; CREATE TABLE `test`.`extable_1` ( `x_coord` int(11) DEFAULT NULL, `y_coord` int(11) DEFAULT NULL, `z_coord` int(11) DEFAULT NULL, `edge_id` int(11) DEFAULT NULL, `life_id` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `test`.`extable_2`; CREATE TABLE `test`.`extable_2` ( `daset_id` int(11) DEFAULT NULL, `sect_id` int(11) DEFAULT NULL, `xyz_id` int(11) DEFAULT NULL, `edge_id` int(11) DEFAULT NULL, `life_id` int(11) DEFAULT NULL, `another_id` int(11) DEFAULT NULL, `yetanother_id` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1;