DbSql::Delete PHP Méthode

Delete() public méthode

构造数据删除语句
public Delete ( string $table, string $where, array | null $option = null ) : string
$table string
$where string
$option array | null
Résultat string 返回构造的语句
    public function Delete($table, $where, $option = null)
    {
        return $this->get()->delete($this->db)->delete($table)->where($where)->option($option)->sql;
    }