Welcome to Interactive Programming Forums, where you can ask questions, receive answers from other members of the community, post code snippets and post exercies.

How to insert a record into 'employees' table?

+1 vote
INSERT into Employees (firstname, lastname, position,  age) VALUES ('Jennifer', 'Johhson', 'Engineer', 30);
INSERT into Employees (firstname, lastname, position, age) VALUES ('John', 'Doe', 'Accountant', 25);
INSERT into Employees (firstname, lastname, position, age) VALUES ('Chris', 'Williams', 'QA', 35)
SELECT * FROM Employees;
posted 11 years ago in SQL by yende (9,130 points)

1 Answer

0 votes
Your SQL queries look fine.
Did you name your table 'Employees' or 'employees'?
It is case-sensitive so please check it and let me know.
answered 11 years ago by codeadmin (113,880 points)

Related questions

+7 votes
1 answer
+8 votes
1 answer
posted 12 years ago in SQL by shnhorn (1,280 points)
+4 votes
1 answer