try it like this --
Code:
CREATE TABLE jos_keyword_stats
( id INTEGER NOT NULL PRIMARY KEY AUTO_INCREMENT
, Keyword VARCHAR(99) NOT NULL
, MyDateTime DATETIME NOT NULL
, Destination VARCHAR(99)
, Location VARCHAR(99)
, UserIP VARCHAR(15)
, UserAgent VARCHAR(99)
) ENGINE=MyISAM AUTO_INCREMENT=0 DEFAULT CHARSET=utf8;
your problem was that you had several
strings in there (delimited by single quotes) instead of column names (optionally delimited by backticks)
i've also made some suggested improvements