Having

public struct Having : ConditionalClause, QueryHavingProtocol

An SQL HAVING clause.

  • Declaration

    Swift

    public typealias ClauseType = Having
  • Declaration

    Swift

    public typealias ColumnExpressionType = AggregateColumnExpression
  • lhs

    The left hand side of the conditional clause.

    Declaration

    Swift

    public let lhs: Predicate<Having, AggregateColumnExpression>?
  • rhs

    The right hand side of the conditional clause.

    Declaration

    Swift

    public let rhs: Predicate<Having, AggregateColumnExpression>?
  • The operator of the conditional clause.

    Declaration

    Swift

    public let condition: Condition
  • Create a Having clause using the isNull operator.

    Declaration

    Swift

    public func isNull() -> Having

    Return Value

    A Having containing the clause.

  • Create a Having clause using the isNotNull operator.

    Declaration

    Swift

    public func isNotNull() -> Having

    Return Value

    A Having containing the clause.