CBLQueryJoin
@interface CBLQueryJoin : NSObjectA CBLQueryJoin represents the JOIN clause in the query statement.
- 
                  
                  Create a JOIN (same as INNER JOIN) component with the given data source and the on expression. DeclarationObjective-C + (nonnull instancetype)join:(nonnull CBLQueryDataSource *)dataSource on:(nullable CBLQueryExpression *)expression;
- 
                  
                  Create a LEFT JOIN (same as LEFT OUTER JOIN) component with the given data source and the on expression. DeclarationObjective-C + (nonnull instancetype)leftJoin:(nonnull CBLQueryDataSource *)dataSource on:(nullable CBLQueryExpression *)expression;
- 
                  
                  Create a LEFT OUTER JOIN component with the given data source and the on expression. DeclarationObjective-C + (nonnull instancetype)leftOuterJoin:(nonnull CBLQueryDataSource *)dataSource on:(nullable CBLQueryExpression *)expression;
- 
                  
                  Create an INNER JOIN component with the given data source and the on expression. DeclarationObjective-C + (nonnull instancetype)innerJoin:(nonnull CBLQueryDataSource *)dataSource on:(nullable CBLQueryExpression *)expression;
- 
                  
                  Create a CROSS JOIN component with the given data source and the on expression. DeclarationObjective-C + (nonnull instancetype)crossJoin:(nonnull CBLQueryDataSource *)dataSource;
- 
                  
                  Unavailable Not available. DeclarationObjective-C - (nonnull instancetype)init;
 CBLQueryJoin Class Reference
        CBLQueryJoin Class Reference