I'm very very new to programming. I'm having the hardest time with a seemingly simple insert statement that I'm using a query to run. The following is exactly what I am putting in:
INSERT INTO [EMPLOYEE TABLE]
(list of column names surrounded by '' and separated by ,.)
VALUES
(list of data that I want in each column)
I can't get rid of syntax complaints at the bracketed employee table. I've tried multiple combinations. I'm also trying to get my first column to generate an automatic number. When it's time to input something in that column, what should I be inserting there? Should it be blank?