2005/04/15 15:20 PostgreSQLで create table sample1 ( seq_no integer not null primary key, create_date timestamp not null default current_timestamp, update_date timestamp not null default current_timestamp ); というテーブルを作って、phpでこれを操作するプログラムを開発。それでこれをmysqlでも動かそうと考えた。 フィールドの型をみると、mysqlにもinteger型とtimestamp型があったので、「まぁPostgreSQLと同じだろう」と深くは考えずにそのまま作ろうとした。 すると ERROR 1293 (HY000): Incorrect table definition