command-delete
Deletes row(s) from a table
Format
DELETE FROM Table [ WHERE bool-condition ]
Remarks
UNEXPECTED BEHAVIOR OF APPLICATION
The searched DELETE command deletes row(s) from a table. The operation is multi-row, in that zero or more rows will be deleted from a table in a single operation. The optional WHERE clause defines a condition, which identifies which rows will be deleted.
CAUTION: Omitting the WHERE clause will delete all rows from a table.
DELETE
FROM CDBPoint
WHERE FullName = 'System.Obsolete Point'