Skip to content

apimigrationremoverecord

Troy Murray edited this page Sep 19, 2011 · 5 revisions

removeRecord()

Usage

Removes one or more records from a table.

Function Syntax

removeRecord(table[,where]);

Parameters

Parameter Type Required Default Description
table string Yes name of the table to remove records from
where string no where condition (see examples below)

Examples

removeRecord(table='members',where='id=1');

removeRecord(table="members",where="lastname='smith' AND firstname='john'");
Clone this wiki locally