Package com.github.eikecochu.sqlbuilder
Interface BeforeFrom
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Fromfrom()Continue query with FROMdefault Fromfrom(From from)Accept an existing FROM statement as predecessordefault Fromfrom(Table... tables)Continue query with FROMdefault Fromfrom(java.lang.String... tables)Continue query with FROMdefault FromfromSQL(java.lang.String sql)Use plain SQL to form this FROM statement
-
-
-
Method Detail
-
from
default From from()
Continue query with FROM- Returns:
- The new FROM statement
-
from
default From from(java.lang.String... tables)
Continue query with FROM- Parameters:
tables- The names of the tables to select from- Returns:
- The new FROM statement
-
from
default From from(Table... tables)
Continue query with FROM- Parameters:
tables- The Table representations of the tables to select from- Returns:
- The new FROM statement
-
from
default From from(From from)
Accept an existing FROM statement as predecessor- Parameters:
from- The existing FROM statement- Returns:
- Returns the passed FROM statement
-
fromSQL
default From fromSQL(java.lang.String sql)
Use plain SQL to form this FROM statement- Parameters:
sql- The sql string- Returns:
- The new FROM statement
-
-