com.yahoo.squidb.sql.Query.unionAll()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(1.9k)|赞(0)|评价(0)|浏览(249)

本文整理了Java中com.yahoo.squidb.sql.Query.unionAll方法的一些代码示例,展示了Query.unionAll的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.unionAll方法的具体详情如下:
包路径:com.yahoo.squidb.sql.Query
类名称:Query
方法名:unionAll

Query.unionAll介绍

[英]Form a compound select with the given query using the UNION ALL operator
[中]使用UNION ALL运算符与给定查询形成复合select

代码示例

代码示例来源:origin: yahoo/squidb

  1. /**
  2. * Form a compound select with the given query using the UNION ALL operator
  3. *
  4. * @param query a Query object to append with the UNION ALL operator
  5. * @return this Query object, to allow chaining method calls
  6. * @see <a href="http://www.sqlite.org/lang_select.html#compound">http://www.sqlite.org/lang_select.html#compound</a>
  7. */
  8. public Query unionAll(Query query) {
  9. if (immutable) {
  10. return fork().unionAll(query);
  11. }
  12. addCompoundSelect(CompoundSelect.unionAll(query));
  13. return this;
  14. }

代码示例来源:origin: com.yahoo.squidb/squidb

  1. /**
  2. * Form a compound select with the given query using the UNION ALL operator
  3. *
  4. * @param query a Query object to append with the UNION ALL operator
  5. * @return this Query object, to allow chaining method calls
  6. * @see <a href="http://www.sqlite.org/lang_select.html#compound">http://www.sqlite.org/lang_select.html#compound</a>
  7. */
  8. public Query unionAll(Query query) {
  9. if (immutable) {
  10. return fork().unionAll(query);
  11. }
  12. addCompoundSelect(CompoundSelect.unionAll(query));
  13. return this;
  14. }

代码示例来源:origin: yahoo/squidb

  1. public void testUnionAll() {
  2. Query query = Query.select().from(Employee.TABLE).where(Employee.MANAGER_ID.eq(1))
  3. .unionAll(Query.select().from(Employee.TABLE).where(Employee.ID.eq(2)))
  4. .orderBy(Employee.ID.asc());
  5. SquidCursor<Employee> cursor = database.query(Employee.class, query);
  6. try {
  7. assertEquals(4, cursor.getCount());
  8. cursor.moveToFirst();
  9. assertEquals(cookieMonster, new Employee(cursor));
  10. cursor.moveToNext();
  11. assertEquals(cookieMonster, new Employee(cursor));
  12. cursor.moveToNext();
  13. assertEquals(elmo, new Employee(cursor));
  14. cursor.moveToNext();
  15. assertEquals(oscar, new Employee(cursor));
  16. } finally {
  17. cursor.close();
  18. }
  19. }

相关文章