Union |
Union.all() |
Enable UNION ALL to join all results without removing duplicate results.
|
Union |
Union.all(boolean all) |
Pass true to enable UNION ALL or false to enable UNION.
|
Union |
Union.distinct() |
Enable UNION to join only distinct results.
|
default Union |
BeforeUnion.union() |
Continue query with UNION
|
default Union |
BeforeUnion.union(Union union) |
Accept an existing UNION statement as predecessor
|
default Union |
BeforeUnion.unionAll() |
Continue query with UNION ALL
|
default Union |
BeforeUnion.unionSQL(java.lang.String sql) |
Use plain SQL to form this UNION statement
|