SQL | The DELETE Statement

DELETE FROM table_name WHERE some_column=some_value Note: Notice the WHERE clause in the DELETE syntax. The WHERE clause specifies which record or records that should be deleted. If you omit the WHERE clause, all records will be deleted! SQL DELETE Example The “Persons” table: Now we want to delete the person “Tjessem, Jakob” in the “Persons” … Continue reading SQL | The DELETE Statement