FromAdapter | 
FromAdapter.from(java.lang.String tableName) | 
Add a table to the from clause
 returning this  FromAdapter ready for the next item  
 | 
FromAdapter | 
FromAdapter.from(java.lang.String tableName,
    Alias alias) | 
Add a table with an alias (tab AS foo) to the from clause
 returning this  FromAdapter ready for the next item  
 | 
FromAdapter | 
SelectAdapter.from() | 
Create a  FromAdapter associated with the current select statement.  
 | 
FromAdapter | 
SelectAdapter.from(Select sub,
    Alias alias) | 
 Add the sub-query select to the FROM clause 
 | 
FromAdapter | 
SelectAdapter.from(java.lang.String table) | 
 Create a from clause for this select statement 
 | 
FromAdapter | 
SelectAdapter.from(java.lang.String tableName,
    Alias alias) | 
 Create a from clause for this select statement 
 | 
FromAdapter | 
FromAdapter.innerJoin(java.lang.String tableName,
         Alias alias,
         WhereFragment joinOnPredicate) | 
 Add an INNER JOIN for the given table 
 | 
FromAdapter | 
FromAdapter.leftOuterJoin(java.lang.String tableName,
             Alias alias,
             WhereFragment joinOnPredicate) | 
 Add a LEFT OUTER JOIN for the given table 
 | 
FromAdapter | 
FromSubQueryAdapter.subEnd(java.lang.String alias) | 
End construction of this sub-query by returning out parent  FromAdapter
 thus allowing a caller to continue with their fluent building of the select statement  
 |