Database - Introduction to SQL - Discussion

Discussion Forum : Introduction to SQL - General Questions (Q.No. 1)
1.
You can add a row using SQL in a database with which of the following?
ADD
CREATE
INSERT
MAKE
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
43 comments Page 3 of 5.

Mk kashyap said:   9 years ago
INSERT is only keyword to add a row in database/table.
(2)

Aysha said:   1 decade ago
Insert is the keyword to add all values into the table

Prasu said:   1 decade ago
Insert command is used insert new values into table.

Navee said:   1 decade ago
Insert is the only keyword to add a row in a table.

Mahesh Karbhal said:   1 decade ago
INSERT command is use for inserting row in a table.

Kanimozhi said:   9 years ago
INSERT is for putting in a fresh record to a table.
(1)

Sangita said:   1 decade ago
Insert into<table name> values(001,'rupali');

MURALI CHAVADI said:   5 years ago
insert into TABLENAME into VALUES(col1,col2,....);
(5)

Rani said:   1 decade ago
Insert is the command used to add rows in a table.

M g balaji said:   1 decade ago
Insert is a keyword in order to add the new row.


Post your comments here:

Your comments will be displayed after verification.