SQL and PL/SQL Question: Download SQL and PL/SQL PDF

The Delete Statements in SQL.

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 and PL/SQL PDF Read All 45 SQL and PL/SQL Questions
Previous QuestionNext Question
The Update Statement in SQL.Sort the Rows in SQL.