Database - Introduction to SQL - Discussion

Discussion Forum : Introduction to SQL - General Questions (Q.No. 2)
2.
The command to remove rows from a table 'CUSTOMER' is:
REMOVE FROM CUSTOMER ...
DROP FROM CUSTOMER ...
DELETE FROM CUSTOMER WHERE ...
UPDATE FROM CUSTOMER ...
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
29 comments Page 3 of 3.

Ankur said:   1 decade ago
delete from <table_name> where<condition>;

Vijju said:   1 decade ago
How can we delete null values or a row from a table?

Shivamkumar said:   1 decade ago
Delete from tablename where column name;.

Pankaj said:   1 decade ago
Puja & ankur are right.

Kanchana said:   1 decade ago
I go with Ankur command.

Sangeeta said:   1 decade ago
I agree with dilip.

Raku said:   1 decade ago
Manche is right.

Rinkesg said:   1 decade ago
Ramya is right.

Mirnal said:   1 decade ago
Pooja is right.


Post your comments here:

Your comments will be displayed after verification.