DeleteStmt constructor

DeleteStmt(
  1. String table,
  2. Expr? where, {
  3. List<SelectItem>? returning,
  4. Map<String, SelectStmt> ctes = const {},
  5. Map<String, List<String>> cteColumns = const {},
  6. bool ctesRecursive = false,
  7. IndexHint? indexedBy,
  8. Expr? limit,
  9. Expr? offset,
})

Implementation

DeleteStmt(
  this.table,
  this.where, {
  this.returning,
  this.ctes = const {},
  this.cteColumns = const {},
  this.ctesRecursive = false,
  this.indexedBy,
  this.limit,
  this.offset,
});