| @NotNull SelectOnStep<R> | SelectJoinStep. fullJoin(String sql) |  | 
| @NotNull SelectOnStep<R> | SelectJoinStep. fullJoin(String sql,
        Object... bindings) |  | 
| @NotNull SelectOnStep<R> | SelectJoinStep. fullJoin(String sql,
        QueryPart... parts) |  | 
| @NotNull SelectOnStep<R> | SelectJoinStep. fullJoin(Name name) |  | 
| @NotNull SelectOnStep<R> | SelectJoinStep. fullJoin(SQL sql) |  | 
| @NotNull SelectOnStep<R> | SelectJoinStep. fullJoin(TableLike<?> table) |  | 
| @NotNull SelectOnStep<R> | SelectJoinStep. fullOuterJoin(String sql) |  | 
| @NotNull SelectOnStep<R> | SelectJoinStep. fullOuterJoin(String sql,
             Object... bindings) |  | 
| @NotNull SelectOnStep<R> | SelectJoinStep. fullOuterJoin(String sql,
             QueryPart... parts) |  | 
| @NotNull SelectOnStep<R> | SelectJoinStep. fullOuterJoin(Name name) |  | 
| @NotNull SelectOnStep<R> | SelectJoinStep. fullOuterJoin(SQL sql) |  | 
| @NotNull SelectOnStep<R> | SelectJoinStep. fullOuterJoin(TableLike<?> table) |  | 
| @NotNull SelectOnStep<R> | SelectJoinStep. innerJoin(String sql) | Convenience method to  INNER JOIN a table to the last table
 added to the  FROM clause using  Table.join(String). | 
| @NotNull SelectOnStep<R> | SelectJoinStep. innerJoin(String sql,
         Object... bindings) |  | 
| @NotNull SelectOnStep<R> | SelectJoinStep. innerJoin(String sql,
         QueryPart... parts) |  | 
| @NotNull SelectOnStep<R> | SelectJoinStep. innerJoin(Name name) | Convenience method to  INNER JOIN a table to the last table
 added to the  FROM clause using
  Table.join(Name). | 
| @NotNull SelectOnStep<R> | SelectJoinStep. innerJoin(SQL sql) | Convenience method to  INNER JOIN a table to the last table
 added to the  FROM clause using  Table.join(String). | 
| @NotNull SelectOnStep<R> | SelectJoinStep. innerJoin(TableLike<?> table) | Convenience method to  INNER JOIN a table to the last table
 added to the  FROM clause using  Table.join(TableLike). | 
| @NotNull SelectOnStep<R> | SelectJoinStep. join(String sql) | Convenience method to  INNER JOIN a table to the last table
 added to the  FROM clause using  Table.join(String). | 
| @NotNull SelectOnStep<R> | SelectJoinStep. join(String sql,
    Object... bindings) |  | 
| @NotNull SelectOnStep<R> | SelectJoinStep. join(String sql,
    QueryPart... parts) |  | 
| @NotNull SelectOnStep<R> | SelectJoinStep. join(Name name) | Convenience method to  INNER JOIN a table to the last table
 added to the  FROM clause using
  Table.join(Name). | 
| @NotNull SelectOnStep<R> | SelectJoinStep. join(SQL sql) | Convenience method to  INNER JOIN a table to the last table
 added to the  FROM clause using  Table.join(String). | 
| @NotNull SelectOnStep<R> | SelectJoinStep. join(TableLike<?> table) | Convenience method to  INNER JOIN a table to the last table
 added to the  FROM clause using  Table.join(TableLike). | 
| @NotNull SelectOnStep<R> | SelectJoinStep. leftAntiJoin(TableLike<?> table) | A synthetic LEFT ANTI JOINclause that translates to an
 equivalentNOT EXISTSpredicate. | 
| @NotNull SelectOnStep<R> | SelectJoinStep. leftSemiJoin(TableLike<?> table) | A synthetic LEFT SEMI JOINclause that translates to an
 equivalentEXISTSpredicate. | 
| @NotNull SelectOnStep<R> | SelectJoinPartitionByStep. partitionBy(Collection<? extends Field<?>> fields) | Add a PARTITION BYclause to the right hand side of theOUTER JOINkeywords | 
| @NotNull SelectOnStep<R> | SelectJoinPartitionByStep. partitionBy(Field<?>... fields) | Add a PARTITION BYclause to the right hand side of theOUTER JOINkeywords | 
| @NotNull SelectOnStep<R> | SelectJoinStep. straightJoin(String sql) | STRAIGHT_JOINa table to this table.
 | 
| @NotNull SelectOnStep<R> | SelectJoinStep. straightJoin(String sql,
            Object... bindings) | STRAIGHT_JOINa table to this table.
 | 
| @NotNull SelectOnStep<R> | SelectJoinStep. straightJoin(String sql,
            QueryPart... parts) | STRAIGHT_JOINa table to this table.
 | 
| @NotNull SelectOnStep<R> | SelectJoinStep. straightJoin(Name name) | STRAIGHT_JOINa table to this table.
 | 
| @NotNull SelectOnStep<R> | SelectJoinStep. straightJoin(SQL sql) | STRAIGHT_JOINa table to this table.
 | 
| @NotNull SelectOnStep<R> | SelectJoinStep. straightJoin(TableLike<?> table) | STRAIGHT_JOINa table to this table.
 |