public interface TableOuterJoinStep<R extends Record>
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
Modifier and Type | Method and Description |
---|---|
TableOnStep<Record> |
join(TableLike<?> table,
JoinType type)
Join a table to this table using a
JoinType . |
TableOnStep<Record> |
leftJoin(Name name)
LEFT OUTER JOIN a table to this table. |
TableOnStep<Record> |
leftJoin(SQL sql)
LEFT OUTER JOIN a table to this table. |
TableOnStep<Record> |
leftJoin(java.lang.String sql)
LEFT OUTER JOIN a table to this table. |
TableOnStep<Record> |
leftJoin(java.lang.String sql,
java.lang.Object... bindings)
LEFT OUTER JOIN a table to this table. |
TableOnStep<Record> |
leftJoin(java.lang.String sql,
QueryPart... parts)
LEFT OUTER JOIN a table to this table. |
TableOnStep<Record> |
leftJoin(TableLike<?> table)
LEFT OUTER JOIN a table to this table. |
TableOnStep<Record> |
leftOuterJoin(Name name)
LEFT OUTER JOIN a table to this table. |
TableOnStep<Record> |
leftOuterJoin(SQL sql)
LEFT OUTER JOIN a table to this table. |
TableOnStep<Record> |
leftOuterJoin(java.lang.String sql)
LEFT OUTER JOIN a table to this table. |
TableOnStep<Record> |
leftOuterJoin(java.lang.String sql,
java.lang.Object... bindings)
LEFT OUTER JOIN a table to this table. |
TableOnStep<Record> |
leftOuterJoin(java.lang.String sql,
QueryPart... parts)
LEFT OUTER JOIN a table to this table. |
TableOnStep<Record> |
leftOuterJoin(TableLike<?> table)
LEFT OUTER JOIN a table to this table. |
TableOnStep<Record> |
rightJoin(Name name)
RIGHT OUTER JOIN a table to this table. |
TableOnStep<Record> |
rightJoin(SQL sql)
RIGHT OUTER JOIN a table to this table. |
TableOnStep<Record> |
rightJoin(java.lang.String sql)
RIGHT OUTER JOIN a table to this table. |
TableOnStep<Record> |
rightJoin(java.lang.String sql,
java.lang.Object... bindings)
RIGHT OUTER JOIN a table to this table. |
TableOnStep<Record> |
rightJoin(java.lang.String sql,
QueryPart... parts)
RIGHT OUTER JOIN a table to this table. |
TableOnStep<Record> |
rightJoin(TableLike<?> table)
RIGHT OUTER JOIN a table to this table. |
TableOnStep<Record> |
rightOuterJoin(Name name)
RIGHT OUTER JOIN a table to this table. |
TableOnStep<Record> |
rightOuterJoin(SQL sql)
RIGHT OUTER JOIN a table to this table. |
TableOnStep<Record> |
rightOuterJoin(java.lang.String sql)
RIGHT OUTER JOIN a table to this table. |
TableOnStep<Record> |
rightOuterJoin(java.lang.String sql,
java.lang.Object... bindings)
RIGHT OUTER JOIN a table to this table. |
TableOnStep<Record> |
rightOuterJoin(java.lang.String sql,
QueryPart... parts)
RIGHT OUTER JOIN a table to this table. |
TableOnStep<Record> |
rightOuterJoin(TableLike<?> table)
RIGHT OUTER JOIN a table to this table. |
@Support TableOnStep<Record> join(TableLike<?> table, JoinType type)
JoinType
.
Only JoinType.LEFT_OUTER_JOIN
, JoinType.RIGHT_OUTER_JOIN
,
and JoinType.FULL_OUTER_JOIN
are allowed.
@Support TableOnStep<Record> leftJoin(TableLike<?> table)
LEFT OUTER JOIN
a table to this table.
A synonym for leftOuterJoin(TableLike)
.
leftOuterJoin(TableLike)
@Support @PlainSQL TableOnStep<Record> leftJoin(SQL sql)
LEFT OUTER JOIN
a 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!
DSL.table(SQL)
,
leftOuterJoin(SQL)
,
SQL
@Support @PlainSQL TableOnStep<Record> leftJoin(java.lang.String sql)
LEFT OUTER JOIN
a 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!
DSL.table(String)
,
leftOuterJoin(String)
,
SQL
@Support @PlainSQL TableOnStep<Record> leftJoin(java.lang.String sql, java.lang.Object... bindings)
LEFT OUTER JOIN
a 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!
@Support @PlainSQL TableOnStep<Record> leftJoin(java.lang.String sql, QueryPart... parts)
LEFT OUTER JOIN
a 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!
@Support TableOnStep<Record> leftJoin(Name name)
LEFT OUTER JOIN
a table to this table.
A synonym for leftOuterJoin(Name)
.
DSL.table(Name)
,
leftOuterJoin(Name)
@Support TableOnStep<Record> leftOuterJoin(TableLike<?> table)
LEFT OUTER JOIN
a table to this table.@Support @PlainSQL TableOnStep<Record> leftOuterJoin(SQL sql)
LEFT OUTER JOIN
a 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!
DSL.table(SQL)
,
SQL
@Support @PlainSQL TableOnStep<Record> leftOuterJoin(java.lang.String sql)
LEFT OUTER JOIN
a 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!
DSL.table(String)
,
SQL
@Support @PlainSQL TableOnStep<Record> leftOuterJoin(java.lang.String sql, java.lang.Object... bindings)
LEFT OUTER JOIN
a 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!
@Support @PlainSQL TableOnStep<Record> leftOuterJoin(java.lang.String sql, QueryPart... parts)
LEFT OUTER JOIN
a 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!
@Support TableOnStep<Record> leftOuterJoin(Name name)
LEFT OUTER JOIN
a table to this table.DSL.table(Name)
,
SQL
@Support(value={ACCESS,ASE,CUBRID,DB2,DERBY,FIREBIRD,H2,HANA,HSQLDB,INFORMIX,INGRES,MARIADB,MYSQL,ORACLE,POSTGRES,SQLSERVER,SYBASE,VERTICA}) TableOnStep<Record> rightJoin(TableLike<?> table)
RIGHT OUTER JOIN
a table to this table.
A synonym for rightOuterJoin(TableLike)
.
This is only possible where the underlying RDBMS supports it.
rightOuterJoin(TableLike)
@Support(value={ACCESS,ASE,CUBRID,DB2,DERBY,FIREBIRD,H2,HANA,HSQLDB,INFORMIX,INGRES,MARIADB,MYSQL,ORACLE,POSTGRES,SQLSERVER,SYBASE,VERTICA}) @PlainSQL TableOnStep<Record> rightJoin(SQL sql)
RIGHT OUTER JOIN
a 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!
DSL.table(SQL)
,
rightOuterJoin(SQL)
,
SQL
@Support(value={ACCESS,ASE,CUBRID,DB2,DERBY,FIREBIRD,H2,HANA,HSQLDB,INFORMIX,INGRES,MARIADB,MYSQL,ORACLE,POSTGRES,SQLSERVER,SYBASE,VERTICA}) @PlainSQL TableOnStep<Record> rightJoin(java.lang.String sql)
RIGHT OUTER JOIN
a 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!
DSL.table(String)
,
rightOuterJoin(String)
,
SQL
@Support(value={ACCESS,ASE,CUBRID,DB2,DERBY,FIREBIRD,H2,HANA,HSQLDB,INFORMIX,INGRES,MARIADB,MYSQL,ORACLE,POSTGRES,SQLSERVER,SYBASE,VERTICA}) @PlainSQL TableOnStep<Record> rightJoin(java.lang.String sql, java.lang.Object... bindings)
RIGHT OUTER JOIN
a 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!
@Support(value={ACCESS,ASE,CUBRID,DB2,DERBY,FIREBIRD,H2,HANA,HSQLDB,INFORMIX,INGRES,MARIADB,MYSQL,ORACLE,POSTGRES,SQLSERVER,SYBASE,VERTICA}) @PlainSQL TableOnStep<Record> rightJoin(java.lang.String sql, QueryPart... parts)
RIGHT OUTER JOIN
a 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!
@Support(value={ACCESS,ASE,CUBRID,DB2,DERBY,FIREBIRD,H2,HANA,HSQLDB,INFORMIX,INGRES,MARIADB,MYSQL,ORACLE,POSTGRES,SQLSERVER,SYBASE,VERTICA}) TableOnStep<Record> rightJoin(Name name)
RIGHT OUTER JOIN
a table to this table.
A synonym for rightOuterJoin(Name)
.
This is only possible where the underlying RDBMS supports it
DSL.table(Name)
,
rightOuterJoin(Name)
@Support(value={ACCESS,ASE,CUBRID,DB2,DERBY,FIREBIRD,H2,HANA,HSQLDB,INFORMIX,INGRES,MARIADB,MYSQL,ORACLE,POSTGRES,SQLSERVER,SYBASE,VERTICA}) TableOnStep<Record> rightOuterJoin(TableLike<?> table)
RIGHT OUTER JOIN
a table to this table.
This is only possible where the underlying RDBMS supports it
@Support(value={ACCESS,ASE,CUBRID,DB2,DERBY,FIREBIRD,H2,HANA,HSQLDB,INFORMIX,INGRES,MARIADB,MYSQL,ORACLE,POSTGRES,SQLSERVER,SYBASE,VERTICA}) @PlainSQL TableOnStep<Record> rightOuterJoin(SQL sql)
RIGHT OUTER JOIN
a 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!
DSL.table(SQL)
,
SQL
@Support(value={ACCESS,ASE,CUBRID,DB2,DERBY,FIREBIRD,H2,HANA,HSQLDB,INFORMIX,INGRES,MARIADB,MYSQL,ORACLE,POSTGRES,SQLSERVER,SYBASE,VERTICA}) @PlainSQL TableOnStep<Record> rightOuterJoin(java.lang.String sql)
RIGHT OUTER JOIN
a 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!
DSL.table(String)
,
SQL
@Support(value={ACCESS,ASE,CUBRID,DB2,DERBY,FIREBIRD,H2,HANA,HSQLDB,INFORMIX,INGRES,MARIADB,MYSQL,ORACLE,POSTGRES,SQLSERVER,SYBASE,VERTICA}) @PlainSQL TableOnStep<Record> rightOuterJoin(java.lang.String sql, java.lang.Object... bindings)
RIGHT OUTER JOIN
a 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!
@Support(value={ACCESS,ASE,CUBRID,DB2,DERBY,FIREBIRD,H2,HANA,HSQLDB,INFORMIX,INGRES,MARIADB,MYSQL,ORACLE,POSTGRES,SQLSERVER,SYBASE,VERTICA}) @PlainSQL TableOnStep<Record> rightOuterJoin(java.lang.String sql, QueryPart... parts)
RIGHT OUTER JOIN
a 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!
@Support(value={ACCESS,ASE,CUBRID,DB2,DERBY,FIREBIRD,H2,HANA,HSQLDB,INFORMIX,INGRES,MARIADB,MYSQL,ORACLE,POSTGRES,SQLSERVER,SYBASE,VERTICA}) TableOnStep<Record> rightOuterJoin(Name name)
RIGHT OUTER JOIN
a table to this table.
This is only possible where the underlying RDBMS supports it
DSL.table(Name)
Copyright © 2018. All Rights Reserved.