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

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

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

Query.having介绍

[英]Add a Criterion to the HAVING clause of this query. Multiple calls will combine all the criterions with AND.
[中]将条件添加到此查询的HAVING子句中。多个调用将把所有标准与和结合起来。

代码示例

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

  1. /**
  2. * Add a {@link Criterion} to the HAVING clause of this query. Multiple calls will combine all the criterions with
  3. * AND.
  4. *
  5. * @param criterion the Criterion to add to the HAVING clause
  6. * @return this Query object, to allow chaining method calls
  7. */
  8. public Query having(Criterion criterion) {
  9. if (criterion == null) {
  10. return this;
  11. }
  12. if (immutable) {
  13. return fork().having(criterion);
  14. }
  15. if (this.havings == null) {
  16. this.havings = new ArrayList<>();
  17. }
  18. this.havings.add(criterion);
  19. invalidateCompileCache();
  20. return this;
  21. }

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

  1. public void testBoundArgumentsWorkInHavingClause() {
  2. Query query = Query.select(Employee.PROPERTIES)
  3. .groupBy(Employee.MANAGER_ID)
  4. .having(Function.count(Employee.MANAGER_ID).gt(2));
  5. SquidCursor<Employee> cursor = database.query(Employee.class, query);
  6. try {
  7. assertEquals(1, cursor.getCount());
  8. cursor.moveToFirst();
  9. assertEquals(bigBird.getRowId(), cursor.get(Employee.MANAGER_ID).longValue());
  10. } finally {
  11. cursor.close();
  12. }
  13. }

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

  1. subquery.having(Function.count().gt(1));

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

  1. /**
  2. * Add a {@link Criterion} to the HAVING clause of this query. Multiple calls will combine all the criterions with
  3. * AND.
  4. *
  5. * @param criterion the Criterion to add to the HAVING clause
  6. * @return this Query object, to allow chaining method calls
  7. */
  8. public Query having(Criterion criterion) {
  9. if (criterion == null) {
  10. return this;
  11. }
  12. if (immutable) {
  13. return fork().having(criterion);
  14. }
  15. if (this.havings == null) {
  16. this.havings = new ArrayList<>();
  17. }
  18. this.havings.add(criterion);
  19. invalidateCompileCache();
  20. return this;
  21. }

相关文章