Interface SelectRecursiveCTECriteriaBuilder<X>

    • Method Detail

      • union

        SelectCTECriteriaBuilder<X> union()
        Finishes the CTE builder for the non-recursive part and starts the builder for the recursive part. The union operator is used for connecting the non-recursive and recursive part, thus removing duplicates.
        Returns:
        The parent query builder
      • unionAll

        SelectCTECriteriaBuilder<X> unionAll()
        Finishes the CTE builder for the non-recursive part and starts the builder for the recursive part. The union all operator is used for connecting the non-recursive and recursive part, thus not removing duplicates.
        Returns:
        The parent query builder