what's wrong with this syntax?
INSERT INTO USERtbl (EIDP,RANK,FIRSTNAME,LASTNAME,OFFICE,PHONE,EMAIL,LEVEL,RIGHTS) Values ('john.doe','Mr.','John','Doe',19,'318-555-5555','john.doe@gmail.com','Company','Admin')
All fields are 'Text' except for Office which is a 'Number'.
I thought maybe one of the fieldnames I'm using might be reserved, but I searched it in Google and they weren't on any reserved words lists.
Appreciate any help on this!
AJ
INSERT INTO USERtbl (EIDP,RANK,FIRSTNAME,LASTNAME,OFFICE,PHONE,EMAIL,LEVEL,RIGHTS) Values ('john.doe','Mr.','John','Doe',19,'318-555-5555','john.doe@gmail.com','Company','Admin')
All fields are 'Text' except for Office which is a 'Number'.
I thought maybe one of the fieldnames I'm using might be reserved, but I searched it in Google and they weren't on any reserved words lists.
Appreciate any help on this!
AJ