Skip to content

Instance Method

add(_:all:)

Add an additional query to the union using the UNION or UNION ALL joiner.
mutating func add(_ query: SQLSelect, all: Bool)

Parameters

query

The query to add.

all

If true, use UNION ALL as the joiner, otherwise use UNION DISTINCT.