Interface BeforeUnion<T extends BeforeUnion<T>>

    • Method Detail

      • union

        default Union union()
        Continue query with UNION
        Returns:
        The new UNION statement
      • unionAll

        default Union unionAll()
        Continue query with UNION ALL
        Returns:
        The new UNION ALL statement
      • union

        default Union union​(Union union)
        Accept an existing UNION statement as predecessor
        Parameters:
        union - The existing UNION statement
        Returns:
        Returns the passed UNION statement
      • unionSQL

        default Union unionSQL​(java.lang.String sql)
        Use plain SQL to form this UNION statement
        Parameters:
        sql - The sql string
        Returns:
        The new UNION statement