Interactive Programming Forums
Login
Register
Home
Questions/Snippets/Exercises
Unanswered
Tags
Ask a Question
Post a Code Snippet
Post an Exercise
Welcome to Interactive Programming Forums, where you can ask questions, receive answers from other members of the community, post code snippets and post exercies.
All categories
Ruby
(3)
Python
(10)
PHP
(7)
Perl
(2)
SQL
(8)
Javascript
(6)
HTML
(20)
CSS
(4)
jQuery
(0)
XML
(3)
Code Snippets
(1)
Exercises
(4)
Other
(9)
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
12 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
12 years
ago
by
codeadmin
(
113,880
points)
Related questions
+3
votes
1
answer
How to create a 5x4 (5 rows, 4 columns) table with one of rows having a column span set to 4 (colspan="4")?
posted
12 years
ago
in
HTML
by
yende
(
9,130
points)
+7
votes
1
answer
error in sql exercise Chapter IV - CREATE TABLE 'Employees';
posted
12 years
ago
in
SQL
by
SUNRISER
(
2,050
points)
sql
error
programming-code
+8
votes
1
answer
Need code to create table ??
posted
12 years
ago
in
SQL
by
shnhorn
(
1,280
points)
programming
+4
votes
1
answer
in html on the second exercises im struggeling to create a 2 x 4 table can some one help
posted
12 years
ago
in
HTML
by
Matthew Tembo
(
6,610
points)
+11
votes
1
answer
How to understand easily the terms of your exercises as a new student who had not such kind of knowledge before?
posted
12 years
ago
in
Exercises
by
chanmg84
(
1,860
points)
programming-code
programming
html
php