SQL (Structured Query Language) Question:

The Delete Statements:

Tweet Share WhatsApp

Answer:

DELETE FROM table_name WHERE column_name = some_value
Delete All Rows:
DELETE FROM table_name or DELETE * FROM table_name

Download SQL PDF Read All 172 SQL Questions
Previous QuestionNext Question
The INSERT INTO Statements:What is use of CASCADE CONSTRAINTS?