Пример #1
0
 /**
  * deleteFrom('table') => "DELETE FROM table"
  * @param string $table
  * @return \phprs\ezsql\rules\basic\WhereRule
  */
 public function deleteFrom($table)
 {
     DeleteImpl::deleteFrom($this->context, $table);
     return new WhereRule($this->context);
 }