The delete_from command removes multiple records from the database at one time. Similar to the update_recordset command, delete_from consolidates many database calls into one operation, and increases database performance.
1 2 3
CustTable custTable; delete_from custTable where custTable.Currency == "ABC";
*This post is locked for comments