1 Delete

Delete records from a table.

<delete table='table'>
    <optimizer-directives /> *
    <where condition='condition' /> ?
</delete>
Example

Deletes lines of internal movements with the linid passed as variable.

Copy
<delete table='geanmovl'>
    <where>
        linid = <m_linid />
    </where>
</delete>