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

VijayNS said:   1 decade ago
Add any row in a database by using INSERT key word accessing values by using & symbol it address the values of rows.

Bhavya said:   1 decade ago
Insert command is used to add/create the row in the table.

INSERT into TABLE -NAME values('value1','value2','value3');

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:   10 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:   9 years ago
Insert into <table_name>[(column names)] values(value1,value2,....); .
(1)

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

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


Post your comments here:

Your comments will be displayed after verification.