Computer Science - Database Systems - Discussion

Discussion Forum : Database Systems - Section 1 (Q.No. 44)
44.
In SQL, which command is used to add new rows to a table?
ALTER TABLE
ADD ROW
INSERT
APPEND
None of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
4 comments Page 1 of 1.

Er.subodh said:   8 years ago
Insert is used to insert values into existing row not to add a row.

Qureshi said:   8 years ago
INSERT INTO is used to add row, hence INSERT is right option.

Arvind jinta said:   7 years ago
No, it's wrong, new row can b added with alter table.

Ajinkya Shelar said:   7 years ago
INSERT INTO table_name (column1, column2, column3, ...).

VALUES (value1, value2, value3, ...);

This is how we can add row.

Post your comments here:

Your comments will be displayed after verification.