In this tutorial we will demonstrate the use of delete statement. The DELETE statement is used to delete records in a table. General delete syntax Before we do this create the table and add data to it using the following sql sintax: Script: This will be the initial table Very well. Now let's start using delete statement on our Test table : Example: Check the table data now We can see that the row that had the ID=1 is no longer in our table We can also use any other column with our "where" statement. Delete all rows from a table Example: All records will be deleted. Check the table No lines will show up . Will produce the same result as above. Very Important: You cannot recover the data after a "delete from *" statement. If the delete command was committed all the records in the table will be deleted. We will talk about commit in future tutorials. In some databases this is possible using (flashback, backups, etc), but this is an advanced topic which we will discuss in future tutorials. For now remember to always use where clause with you delete statements unless you want all the data to be deleted. There are various types of conditions that we can combine in our delete statements which we will abort in future tutorials.