delete() public method

Creates and executes a DELETE SQL statement.
public delete ( string $table, array | string $condition = '', array $params = [] )
$table string the table where the data will be deleted from.
$condition array | string the conditions that will be put in the WHERE part. Please refer to [[Query::where()]] on how to specify conditions.
$params array the parameters to be bound to the query.
Exemplo n.º 1
0
 /**
  * @inheritdoc
  * Note: table will be auto pefixied if [[$autoWrapTableNames]] is true.
  */
 public function delete($table, $condition = '', $params = [])
 {
     $table = $this->autoWrappedTableName($table);
     return parent::delete($table, $condition, $params);
 }