Package com.github.eikecochu.sqlbuilder
Interface BeforeUnion
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Unionunion()Continue query with UNIONdefault Unionunion(Union union)Accept an existing UNION statement as predecessordefault UnionunionAll()Continue query with UNION ALLdefault UnionunionSQL(java.lang.String sql)Use plain SQL to form this UNION statement
-
-
-
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
-
-