Interface BeforeFrom

  • All Superinterfaces:
    QueryPart
    All Known Implementing Classes:
    Select

    public interface BeforeFrom
    extends QueryPart
    Implemented by keywords that precede the FROM statement.
    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default From from()
      Continue query with FROM
      default From from​(From from)
      Accept an existing FROM statement as predecessor
      default From from​(Table... tables)
      Continue query with FROM
      default From from​(java.lang.String... tables)
      Continue query with FROM
      default From fromSQL​(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