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:
42 comments Page 2 of 5.

Timir said:   1 decade ago
Example of inserting a row as follows:

INSERT INTO table_name VALUES ('FOR STRINGS',FOR NUMERIC VALUES);

Pawan Kumar said:   9 years ago
If change the serial of value like (value1', ' value3', ' value2) ; then variable will execute or not?

Srinivas said:   1 decade ago
Insert into <table_name> values("&ColumnName1","&ColumnName2");

Prasanth said:   1 decade ago
Yes, absolutely. I will use insert keyword to insert a row in a table. No options.

Vanesha said:   1 decade ago
The correct answer is insert keyword only because this keyword is add new row.

Vramakrishna said:   8 years ago
Insert into <table_name>[(column names)] values(value1,value2,....); .
(1)

Ankur said:   1 decade ago
Insert into <table_name> values("&name",&age);

Mounika Pallapu said:   9 years ago
INSERT is a keyword it is used for ADD the values to the table.

Piyush said:   1 decade ago
Insert command can be used to easily add the complete row.

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


Post your comments here:

Your comments will be displayed after verification.