<

SQL DELETE TABLE

The DELETE command is used to delete rows from a table.Need WHERE condition to use DELETE statement.


SQL Delete Syntax


Remove a specific row.


DELETE FROM table_name [WHERE condition];  

remove all the rows from the table.


DELETE FROM table_name;  















© copyright 2017-2022 Completedone pvt ltd.