this is probably a stupid mistake, but i cant seem to find it. I'm just trying to create a table, using phpMyAdmin to directly enter the sql. the error message i get is
"#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 'NOT NULL varchar2(12), password NOT NULL varchar2(100), forename NOT NULL va' at line 3"
CREATE TABLE users (
user_id int NOT NULL AUTO_INCREMENT,
username varchar2(12),
password varchar2(100),
forename varchar2(100),
surname varchar2(100),
email varchar2(100)
)
Any help on why this is happening would be great. I'm running mysql 5.1.41 if this helps
Thanks