-- -- Versione MySQL: 5.0.22 - SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; -- -- Database: `test` -- -- -------------------------------------------------------- -- -- Table schema `test_table` -- CREATE TABLE `test_table` ( `test_id` int(10) unsigned NOT NULL auto_increment, `test_cl_1` tinyint(1) NOT NULL, `test_cl_2` datetime default NULL, PRIMARY KEY (`test_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ; -- -- Data Dump for table `test_table` -- INSERT INTO `test_table` (`test_id`, `test_cl_1`, `test_cl_2`) VALUES (3, 1, '2010-12-07 14:01:28'), (4, 0, '2010-12-07 14:04:35');