Hi,
I just want a simple table for my links page.
Here is the code:
CREATE TABLE link
(
linkname varchar(30),
linkurl varchar(100),
desc varchar(255)
);
I get this error:
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 'desc varchar(255)
)' at line 5
How do I fix this?