Constants

The following constants are available globally.

  • INNER JOIN type for combining records from two tables.

    Declaration

    Objective-C

    extern const OHJoin OHJoinInner

    Swift

    static let inner: Join
  • RIGHT JOIN type for performing a join starting with the second (right-most) table and then any matching first (left-most) table records.

    Declaration

    Objective-C

    extern const OHJoin OHJoinRight

    Swift

    static let right: Join
  • LEFT JOIN type for performing a join starting with the first (left-most) table and then any matching second (right-most) table records.

    Declaration

    Objective-C

    extern const OHJoin OHJoinLeft

    Swift

    static let left: Join
  • FULL JOIN type for all matching records from both tables whether the other table matches or not.

    Declaration

    Objective-C

    extern const OHJoin OHJoinFull

    Swift

    static let full: Join