Skip to content

Protocol

SQLUnqualifiedColumnListBuilder

Common definitions for query builders which permit or require specifying a list of unqualified column names.
protocol SQLUnqualifiedColumnListBuilder : AnyObject

Overview

Unqualified column lists are typically used in areas of SQL syntax where only columns belonging to the “current” table (in context) make sense, such as the initial column list of an INSERT query, the list of indexed columns for a CREATE INDEX query, or the set of columns for the UPDATE OF clause of a CREATE TRIGGER query.

For specifying aliasable columns - such as in a SELECT query - see SQLAliasedColumnListBuilder.

Topics

Instance Properties

Instance Methods

  • func column(_:)
    Specify a single column to be included in the list of columns for the query.
  • func columns(_:)
    Specify mutiple columns to be included in the list of columns for the query.

Relationships

Inherited By

Conforming Types

See Also

Builder Protocols