Instance Method
update(_:)
Create a new
SQLUpdateBuilder associated with this database.func update(_ table: any SQLExpression) -> SQLUpdateBuilder
Parameters
tableAn expression used as the target of the builder’s update query.
Return Value
A new builder.
Mentioned in
See Also
DML queries
func delete(from: String) -> SQLDeleteBuilderCreate a newSQLDeleteBuilder.func delete(from: any SQLExpression) -> SQLDeleteBuilderCreate a newSQLDeleteBuilder.func insert(into: String) -> SQLInsertBuilderCreate a newSQLInsertBuilder.func insert(into: any SQLExpression) -> SQLInsertBuilderCreate a newSQLInsertBuilder.func select() -> SQLSelectBuilderCreate a newSQLSelectBuilder.func union((SQLSelectBuilder) throws -> SQLSelectBuilder) rethrows -> SQLUnionBuilderCreate a newSQLUnionBuilder, providing a builder to create the first query.func update(String) -> SQLUpdateBuilderCreate a newSQLUpdateBuilderassociated with this database.