deleteAll() public static method
Deletes rows in the table using the provided conditions.
WARNING: If you do not specify any condition, this method will delete ALL rows in the table.
For example, to delete all customers whose status is 3:
Customer::deleteAll(['status' => 3]);
public static integer deleteAll ( $condition = null ) | ||
---|---|---|
$condition | array |
The conditions that will be put in the WHERE part of the DELETE SQL. Please refer to yii\redis\ActiveQuery::where() on how to specify this parameter. |
return | integer |
The number of rows deleted |
Please login to continue.