SQLDialect.ORACLE OUTER JOIN clause.
 
 This step allows for adding Oracle-specific PARTITION BY clauses
 to the left of an OUTER JOIN keyword. See the Oracle
 documentation for more details here: https://docs.oracle.com/database/121/SQLRF/statements_10002.htm#BABBCHJA
 
Referencing XYZ*Step types directly from client code
 
 It is usually not recommended to reference any XYZ*Step types
 directly from client code, or assign them to local variables. When writing
 dynamic SQL, creating a statement's components dynamically, and passing them
 to the DSL API statically is usually a better choice. See the manual's
 section about dynamic SQL for details: https://www.jooq.org/doc/latest/manual/sql-building/dynamic-sql.
 
 Drawbacks of referencing the XYZ*Step types directly:
 
- They're operating on mutable implementations (as of jOOQ 3.x)
- They're less composable and not easy to get right when dynamic SQL gets complex
- They're less readable
- They might have binary incompatible changes between minor releases
- Author:
- Lukas Eder
- 
Method SummaryModifier and TypeMethodDescription@NotNull TableOnStep<Record>Join a table to this table using aJoinType.@NotNull TableOnStep<Record>LEFT OUTER JOINa table to this table.@NotNull TableOnStep<Record>LEFT OUTER JOINa table to this table.@NotNull TableOnStep<Record>LEFT OUTER JOINa table to this table.@NotNull TableOnStep<Record>LEFT OUTER JOINa table to this table.@NotNull TableOnStep<Record>LEFT OUTER JOINa table to this table.@NotNull TableOnStep<Record>LEFT OUTER JOINa table to this table.@NotNull TableOnStep<Record>leftOuterJoin(String sql) LEFT OUTER JOINa table to this table.@NotNull TableOnStep<Record>leftOuterJoin(String sql, Object... bindings) LEFT OUTER JOINa table to this table.@NotNull TableOnStep<Record>leftOuterJoin(String sql, QueryPart... parts) LEFT OUTER JOINa table to this table.@NotNull TableOnStep<Record>leftOuterJoin(Name name) LEFT OUTER JOINa table to this table.@NotNull TableOnStep<Record>leftOuterJoin(SQL sql) LEFT OUTER JOINa table to this table.@NotNull TableOnStep<Record>leftOuterJoin(TableLike<?> table) LEFT OUTER JOINa table to this table.@NotNull TableOnStep<Record>RIGHT OUTER JOINa table to this table.@NotNull TableOnStep<Record>RIGHT OUTER JOINa table to this table.@NotNull TableOnStep<Record>RIGHT OUTER JOINa table to this table.@NotNull TableOnStep<Record>RIGHT OUTER JOINa table to this table.@NotNull TableOnStep<Record>RIGHT OUTER JOINa table to this table.@NotNull TableOnStep<Record>RIGHT OUTER JOINa table to this table.@NotNull TableOnStep<Record>rightOuterJoin(String sql) RIGHT OUTER JOINa table to this table.@NotNull TableOnStep<Record>rightOuterJoin(String sql, Object... bindings) RIGHT OUTER JOINa table to this table.@NotNull TableOnStep<Record>rightOuterJoin(String sql, QueryPart... parts) RIGHT OUTER JOINa table to this table.@NotNull TableOnStep<Record>rightOuterJoin(Name name) RIGHT OUTER JOINa table to this table.@NotNull TableOnStep<Record>rightOuterJoin(SQL sql) RIGHT OUTER JOINa table to this table.@NotNull TableOnStep<Record>rightOuterJoin(TableLike<?> table) RIGHT OUTER JOINa table to this table.
- 
Method Details- 
joinJoin a table to this table using aJoinType.Only JoinType.LEFT_OUTER_JOIN,JoinType.RIGHT_OUTER_JOIN, andJoinType.FULL_OUTER_JOINare allowed.
- 
leftJoinLEFT OUTER JOINa table to this table.A synonym for leftOuterJoin(TableLike).- See Also:
 
- 
leftJoinLEFT OUTER JOINa table to this table.A synonym for leftOuterJoin(String).NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! - See Also:
 
- 
leftJoinLEFT OUTER JOINa table to this table.A synonym for leftOuterJoin(String).NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! - See Also:
 
- 
leftJoin@NotNull @Support(ORACLE) @PlainSQL @Pro @NotNull TableOnStep<Record> leftJoin(String sql, Object... bindings) LEFT OUTER JOINa table to this table.A synonym for leftOuterJoin(String, Object...).NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! 
- 
leftJoin@NotNull @Support(ORACLE) @PlainSQL @Pro @NotNull TableOnStep<Record> leftJoin(String sql, QueryPart... parts) LEFT OUTER JOINa table to this table.A synonym for leftOuterJoin(String, QueryPart...).NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! 
- 
leftJoinLEFT OUTER JOINa table to this table.A synonym for leftOuterJoin(Name).- See Also:
 
- 
leftOuterJoinLEFT OUTER JOINa table to this table.
- 
leftOuterJoinLEFT OUTER JOINa table to this table.NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! - See Also:
 
- 
leftOuterJoinLEFT OUTER JOINa table to this table.NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! - See Also:
 
- 
leftOuterJoin@NotNull @Support(ORACLE) @PlainSQL @Pro @NotNull TableOnStep<Record> leftOuterJoin(String sql, Object... bindings) LEFT OUTER JOINa table to this table.NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! 
- 
leftOuterJoin@NotNull @Support(ORACLE) @PlainSQL @Pro @NotNull TableOnStep<Record> leftOuterJoin(String sql, QueryPart... parts) LEFT OUTER JOINa table to this table.NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! 
- 
leftOuterJoinLEFT OUTER JOINa table to this table.- See Also:
 
- 
rightJoinRIGHT OUTER JOINa table to this table.A synonym for rightOuterJoin(TableLike).This is only possible where the underlying RDBMS supports it. - See Also:
 
- 
rightJoinRIGHT OUTER JOINa table to this table.A synonym for rightOuterJoin(String).This is only possible where the underlying RDBMS supports it. NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! - See Also:
 
- 
rightJoinRIGHT OUTER JOINa table to this table.A synonym for rightOuterJoin(String).This is only possible where the underlying RDBMS supports it. NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! - See Also:
 
- 
rightJoin@NotNull @Support(ORACLE) @PlainSQL @Pro @NotNull TableOnStep<Record> rightJoin(String sql, Object... bindings) RIGHT OUTER JOINa table to this table.A synonym for rightOuterJoin(String, Object...).This is only possible where the underlying RDBMS supports it. NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! 
- 
rightJoin@NotNull @Support(ORACLE) @PlainSQL @Pro @NotNull TableOnStep<Record> rightJoin(String sql, QueryPart... parts) RIGHT OUTER JOINa table to this table.A synonym for rightOuterJoin(String, QueryPart...).This is only possible where the underlying RDBMS supports it NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! 
- 
rightJoinRIGHT OUTER JOINa table to this table.A synonym for rightOuterJoin(Name).This is only possible where the underlying RDBMS supports it - See Also:
 
- 
rightOuterJoinRIGHT OUTER JOINa table to this table.This is only possible where the underlying RDBMS supports it 
- 
rightOuterJoinRIGHT OUTER JOINa table to this table.This is only possible where the underlying RDBMS supports it NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! - See Also:
 
- 
rightOuterJoinRIGHT OUTER JOINa table to this table.This is only possible where the underlying RDBMS supports it NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! - See Also:
 
- 
rightOuterJoin@NotNull @Support(ORACLE) @PlainSQL @Pro @NotNull TableOnStep<Record> rightOuterJoin(String sql, Object... bindings) RIGHT OUTER JOINa table to this table.This is only possible where the underlying RDBMS supports it NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! 
- 
rightOuterJoin@NotNull @Support(ORACLE) @PlainSQL @Pro @NotNull TableOnStep<Record> rightOuterJoin(String sql, QueryPart... parts) RIGHT OUTER JOINa table to this table.This is only possible where the underlying RDBMS supports it NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! 
- 
rightOuterJoinRIGHT OUTER JOINa table to this table.This is only possible where the underlying RDBMS supports it - See Also:
 
 
-