Interface BeforeFrom<T extends BeforeFrom<T>>

    • 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​(QueryBuilder<?> subquery,
                          java.lang.String alias)
        Specify a subquery to select from
        Parameters:
        subquery - The subquery to select from
        alias - The subquery alias
        Returns:
        This FROM statement
      • from

        default From from​(QueryBuilder<?> subquery)
        Specify a subquery to select from
        Parameters:
        subquery - The subquery to select from
        Returns:
        This 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