Interface SelectBuilder.SelectFrom

All Superinterfaces:
SelectBuilder.BuildSelect
All Known Subinterfaces:
SelectBuilder.SelectAndFrom, SelectBuilder.SelectFromAndJoin, SelectBuilder.SelectFromAndOrderBy
Enclosing interface:
SelectBuilder

public static interface SelectBuilder.SelectFrom extends SelectBuilder.BuildSelect
Builder exposing FROM methods.
  • Method Details

    • from

      Declare a 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.
      Parameters:
      table - the table name to SELECT … FROM must not be null or empty.
      Returns:
      this builder.
      See Also:
    • from

      Declare a 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.
      Parameters:
      table - the table to SELECT … FROM must not be null.
      Returns:
      this builder.
      See Also:
    • from

      Declare one or more Tables 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.
      Parameters:
      tables - the tables to SELECT … FROM must not be null.
      Returns:
      this builder.
      See Also:
    • from

      Declare one or more Tables 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.
      Parameters:
      tables - the tables to SELECT … FROM must not be null.
      Returns:
      this builder.
      See Also: