DELETE Syntax
6:
DELETE Example
DELETE with Subquery Example
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
DELETE
FROM [<schema name>.]<table name>
[WHERE <expression list>]
6:
DELETE
FROM example.employee
WHERE id = 6
DELETE
FROM example.employee b
WHERE hire_date =
(
SELECT MAX(hire_date)
FROM example.employee l
WHERE b.dept_id = l.dept_id
)