MySQLの、日付型の比較について教えてください。 MySQL:Ver 5.0.21, for pc-linux-gnu (i686) using readline 5.0 OS:Fedora Core 4.0 という環境で、 CREATE TABLE `test_tb` ( `id` int(11) NOT NULL auto_increment, `i_datetime` datetime NOT NULL, ) ENGINE=InnoDB DEFAULT CHARSET=utf8; というテーブルをつくり、 mysqlプロンプトから次のような検索を行っているのですが、 mysql> SELECT i_datetime FROM test_tb WHERE i_datetime >= '2006-6-1 00:00:00'; +---------------------+ | i_da