⚠️ Oops! This page doesn't appear to define a type called _.

SqlComposer_update

This module does not have a toplevel documentation block.

type t = { modifier: option(Modifier.t), from: option(Table.t), join: option(Join.t), set: option(Assignment.t), where: option(Where.t), orderBy: option(OrderBy.t), limit: option(Limit.t) }

let make: unit => t

let assemble: ( ~?modifier: option(Modifier.t), ~?from: option(Table.t), ~?join: option(Join.t), ~?set: option(Assignment.t), ~?where: option(Where.t), ~?orderBy: option(OrderBy.t), ~?limit: option(Limit.t), 'a ) => t

let modifier: (t, [ `Ignore | `LowPriority ]) => t

let from: (t, string) => t

let join: (t, string) => t

let set: (t, string, string) => t

let where: (t, string) => t

let orderBy: (t, [ `Asc of string | `Desc of string ]) => t

let limit: (t, ~?offset: option(int), ~row_count: int) => t

let toSql: t => string