Module org.jooq
Package org.jooq

Interface WithAsStep5


  • public interface WithAsStep5
    This type is part of the jOOQ DSL to create Select, Insert, Update, Delete, Merge statements prefixed with a WITH clause and with CommonTableExpressions.

    Example:

     DSL.with("table", "col1", "col2")
        .as(
            select(one(), two())
        )
        .select()
        .from("table")
     
    Author:
    Lukas Eder