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
queryThe query to add.
allIf true, use
UNION ALLas the joiner, otherwise useUNION DISTINCT.