I'm using MySQL 5... Here is the table i'm trying to create...
mysql_query("CREATE TABLE daily (date VARCHAR(10) PRIMARY KEY,incoming MEDIUMINT(7) UNSIGNED,uniques MEDIUMINT(7) UNSIGNED,out MEDIUMINT(7) UNSIGNED,clicks MEDIUMINT(7) UNSIGNED) TYPE=MyISAM") or error(0, 740);
Here is the error I'm getting?
MySQL said: Documentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'out MEDIUMINT(7) UNSIGNED,clicks MEDIUMINT(7) UNSIGNED) TYPE=MyISAM' at line 1
Any idea whats wrong with it?
Thanks
jeremy