org.jooq
Interface TablePartitionByStep

All Superinterfaces:
TableOnStep

public interface TablePartitionByStep
extends TableOnStep

An intermediate type for the construction of a partitioned SQLDialect.ORACLE OUTER JOIN clause.

This step allows for adding Oracle-specific PARTITION BY clauses to the right of an OUTER JOIN keyword. See the Oracle documentation for more details here: http://docs.oracle.com/cd/B28359_01/server.111/b28286/queries006.htm# i2054062

Author:
Lukas Eder

Method Summary
 TableOnStep partitionBy(Collection<? extends Field<?>> fields)
          Add a PARTITION BY clause to the right hand side of the OUTER JOIN keywords
 TableOnStep partitionBy(Field<?>... fields)
          Add a PARTITION BY clause to the right hand side of the OUTER JOIN keywords
 
Methods inherited from interface org.jooq.TableOnStep
on, on, on, on, onKey, onKey, onKey, using, using
 

Method Detail

partitionBy

TableOnStep partitionBy(Field<?>... fields)
Add a PARTITION BY clause to the right hand side of the OUTER JOIN keywords


partitionBy

TableOnStep partitionBy(Collection<? extends Field<?>> fields)
Add a PARTITION BY clause to the right hand side of the OUTER JOIN keywords



Copyright © 2012. All Rights Reserved.