public interface DerivedColumnList15 extends QueryPart
Thist type models a table name and an optional "derived column list", which
can be used to name both tables and columns in one go, e.g. when aliasing a
derived table or a CommonTableExpression
.
Example:
// Assuming import static org.jooq.impl.DSL.*;
Table<?> t = name("t").fields("v").as(select(one()));
// ^^^^^^^^^^^^^^^^^^^^^ -- DerivedColumnList
using(configuration)
.select()
.from(t)
.fetch();
Instances can be created using Name.fields(String...)
and overloads.
Modifier and Type | Method and Description |
---|---|
<R extends Record15<?,?,?,?,?,?,?,?,?,?,?,?,?,?,?>> |
as(Select<R> select)
Specify a subselect to refer to by the
DerivedColumnList to
form a common table expression. |
Copyright © 2020. All rights reserved.