Jump to content

SQL syntax error


woodplease

Recommended Posts

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

Link to comment
Share on other sites

that is the code i used.

 

i've changed it so that it reads

CREATE TABLE users (
user_id int NOT NULL AUTO_INCREMENT,
username varchar2(12) NOT NULL,
password varchar2(100) NOT NULL,
forename varchar2(100) NOT NULL,
surname varchar2(100) NOT NULL,
email varchar2(100) NOT NULL
)

i'm still gettin the error, although it reads slightly different

#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 'varchar2(12) NOT NULL, password varchar2(100) NOT NULL, forename varchar2(10' at line 3
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.