Entering content frame

Syntax documentation DELETE Statement Locate the document in its SAP Library structure

The DELETE statement allows deleting selected rows from a database table.

Syntax

This graphic is explained in the accompanying text

<delete statement> ::= DELETE FROM <table name>
                                   
 <where clause> )?

Example

Example

DELETE FROM employees WHERE employee_id = 23

Deleting Rows from a Table.  All rows are witch fulfill the condition employee_id  =  23are deleted from the table employees.

See

Table Reference, WHERE Clause

 

Leaving content frame