UpdateStmt constructor

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

Implementation

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