Skip to content

Latest commit

 

History

History
5 lines (5 loc) · 225 Bytes

File metadata and controls

5 lines (5 loc) · 225 Bytes

SQL DELETE Statement:

The delete statement is used to delete existing records in a table.

Delete Statement:

 DELETE FROM table_name where condition;

The WHERE clause specifies which record(s) should be deleted.