Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
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 )