SQL Commands
DELETE Statements
To delete information from a table, use DELETE statements.
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
To delete information from a table, use DELETE statements.
<delete_statement> ::= DELETE FROM <table_name> WHERE { Id = <expression> } [ { AND | OR } ... ]
<expression> ::=
| @ <parameter>
| ?
| <literal>
DELETE FROM Orders WHERE Id = @myId
Was this page helpful?