|
Yep, missing the "VALUES"...
Say for instance, I have a table named myTable with fields of: ID and NAME.
Also, since I have values for all fields in my table, there is no need to specify the columns ahead of time. To insert into the table, I would execute this:
INSERT into myTable VALUES ('0001','Infinite Recursion');
COMMIT;
Where "0001" is the ID and "Infinite Recursion" is the NAME.
__________________
http://jasonpowers.net
"There are a thousand hacking at the branches of evil to one who is striking at the root."
|