i'm trying to create a table in mySQL. could someone please tell me why mySQL keeps telling me that this syntax is invalid:
CREATE TABLE bids (
auction varchar(13),
bidder varchar(13),
bid double(16,4),
when timestamp(14),
quantity int(11) DEFAULT '0'
);
thanks