public static interface SelectBuilder.SelectFrom extends SelectBuilder.BuildSelect
FROM
methods.Modifier and Type | Method and Description |
---|---|
SelectBuilder.SelectFromAndOrderBy |
from(Collection<? extends Table> tables)
Declare one or more
Table s to SELECT … FROM . |
SelectBuilder.SelectFromAndOrderBy |
from(String table)
Declare a
Table to SELECT … FROM . |
SelectBuilder.SelectFromAndOrderBy |
from(Table... tables)
Declare one or more
Table s to SELECT … FROM . |
SelectBuilder.SelectFromAndOrderBy |
from(Table table)
Declare a
Table to SELECT … FROM . |
build
SelectBuilder.SelectFromAndOrderBy from(String table)
Table
to SELECT … FROM
. Multiple calls to this or other from
methods keep
adding items to the select list and do not replace previously contained items.table
- the table name to SELECT … FROM
must not be null or empty.this
builder.From
,
SQL.table(String)
SelectBuilder.SelectFromAndOrderBy from(Table table)
Table
to SELECT … FROM
. Multiple calls to this or other from
methods keep
adding items to the select list and do not replace previously contained items.table
- the table to SELECT … FROM
must not be null.this
builder.From
,
SQL.table(String)
SelectBuilder.SelectFromAndOrderBy from(Table... tables)
Table
s to SELECT … FROM
. Multiple calls to this or other from
methods
keep adding items to the select list and do not replace previously contained items.tables
- the tables to SELECT … FROM
must not be null.this
builder.From
,
SQL.table(String)
SelectBuilder.SelectFromAndOrderBy from(Collection<? extends Table> tables)
Table
s to SELECT … FROM
. Multiple calls to this or other from
methods
keep adding items to the select list and do not replace previously contained items.tables
- the tables to SELECT … FROM
must not be null.this
builder.From
,
SQL.table(String)
Copyright © 2017–2020 Pivotal Software, Inc.. All rights reserved.