I have been looking at the below sql script for ages now and I can't see the problem! It's getting error 1064 - which could be anything...
CREATE TABLE order (order_no INTEGER NOT NULL AUTO_INCREMENT,
vat_id INTEGER NOT NULL,
order_status VARCHAR(30) NOT NULL,
order_pick_date DATE,
order_ship_from INTEGER NOT NULL,
employee_id INTEGER NOT NULL,
payment_id INTEGER,
PRIMARY KEY (order_no))
ENGINE = MYISAM;