org.jooq
Interface PivotForStep


public interface PivotForStep

This type is used for the Oracle PIVOT clause DSL API, pivoting Table objects to new tables.

Author:
Lukas Eder

Method Summary
<T> PivotInStep<T>
on(Field<T> field)
          Add a list of fields to the PIVOT clause.
 

Method Detail

on

<T> PivotInStep<T> on(Field<T> field)
Add a list of fields to the PIVOT clause. Normally, the keyword used here would be FOR, but for is a reserved word in Java and cannot be used. on is close enough.

Parameters:
field - The pivoting field
Returns:
A DSL object to create the PIVOT expression


Copyright © 2012. All Rights Reserved.