SQL DELETE

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

Internal

Overview

DELETE FROM person WHERE id = 8;
PostgreSQL MySQL

The DELETE statement may contain a WHERE clause, that identifies the rows to be deleted:

The WHERE Clause

Conditional DELETE

Also see:

SQL Conditional Logic