Megatron
04-17-2006, 11:52 AM
This mysql code
CREATE TABLE tblClickthroughRates(
ID int (25) NOT NULL AUTO_INCREMENT ,
rate varchar (10) ,
PRIMARY (ID)
)
is rendering this error
#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 '(ID)
)' at line 4
why?
CREATE TABLE tblClickthroughRates(
ID int (25) NOT NULL AUTO_INCREMENT ,
rate varchar (10) ,
PRIMARY (ID)
)
is rendering this error
#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 '(ID)
)' at line 4
why?