CREATE TABLE history_sync ( id serial , nodeid bigint unsigned DEFAULT '0' NOT NULL, itemid bigint unsigned DEFAULT '0' NOT NULL, clock integer DEFAULT '0' NOT NULL, value double(16,4) DEFAULT '0.0000' NOT NULL, PRIMARY KEY (id) ) ENGINE=InnoDB; CREATE INDEX history_sync_1 on history_sync (nodeid,id);