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

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

MMD said:   2 years ago
Thanks everyone for explaining the answer.
(1)

Kaivu said:   1 year ago
You have to add a row, not a table because of that I used the insert query to add the row.

For adding the table you can write the add table.
(1)

Rehan said:   8 months ago
The reason you use "INSERT" in SQL to add a row is that the "INSERT" statement is specifically designed to add new records into tables within a database. It allows you to specify both the table and the values for each column you want to add, making it the standard and correct command for this operation in SQL.

Hasini said:   2 weeks ago
Insert is used to enter the data, right?

How will it be helped to add a row rather than adding info into it?


Post your comments here:

Your comments will be displayed after verification.