In this tutorial you will learn about the MySQL Delete Query and its application with practical example.
If you want to delete a record from any MySQL table then you can use SQL command DELETE FROM.
MySql Delete Syntax:
1 |
DELETE FROM table_name [WHERE Clause] |
WHERE clause can be used to delete specified rows, if WHERE clause is not specified then all rows get deleted.