I want to add a table to my database (mysql) using phpmyadmin and this is what I typed.
create table x3n_members
(ID number(3) primary key,
Username varchar(20) unique,
Password varchar(20),
Email varchar(50),
Handle varchar(20),
Since date,
Position varchar(20),
MSN varchar(50),
Admin varchar(20));
From a tutorial that I'm reading this code should not be wrong but it returned: You have an error in your SQL syntax near 'number(3) primary key, Username varchar(20) unique, Pword varchar(20), Email var' at line 1
Can anyone help me??