Interface SelectBuilder.SelectFrom
- All Superinterfaces:
SelectBuilder.BuildSelect
- All Known Subinterfaces:
SelectBuilder.SelectAndFrom,SelectBuilder.SelectFromAndJoin,SelectBuilder.SelectFromAndOrderBy
- Enclosing interface:
- SelectBuilder
Builder exposing
FROM methods.-
Method Summary
Methods inherited from interface org.springframework.data.relational.core.sql.SelectBuilder.BuildSelect
build
-
Method Details
-
from
Declare aTabletoSELECT … FROM. Multiple calls to this or otherfrommethods keep adding items to the select list and do not replace previously contained items.- Parameters:
table- the table name toSELECT … FROMmust not be null or empty.- Returns:
thisbuilder.- See Also:
-
from
Declare aTabletoSELECT … FROM. Multiple calls to this or otherfrommethods keep adding items to the select list and do not replace previously contained items.- Parameters:
table- the table toSELECT … FROMmust not be null.- Returns:
thisbuilder.- See Also:
-
from
Declare one or moreTables toSELECT … FROM. Multiple calls to this or otherfrommethods keep adding items to the select list and do not replace previously contained items.- Parameters:
tables- the tables toSELECT … FROMmust not be null.- Returns:
thisbuilder.- See Also:
-
from
Declare one or moreTables toSELECT … FROM. Multiple calls to this or otherfrommethods keep adding items to the select list and do not replace previously contained items.- Parameters:
tables- the tables toSELECT … FROMmust not be null.- Returns:
thisbuilder.- See Also:
-