| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /**
- scope(file)
- timeout(60m)
- **/
- ;
- SELECT ID,name FROM /cq_post_demo/qx qx WHERE
- totalaum.time('2025-10-01 00:00:00','2025-10-31 23:59:59').find(name = 'cl').unit('avg', '1M').assert($1 > 0)
- AND balance.time('2025-10-01 00:00:00','2025-10-31 23:59:59').find(name = 'cl').unit('avg', '1M').assert($1 > 0) limit -1
- /**
- output()
- count(39)
- **/
- ;
- SELECT ID,name FROM /cq_post_demo/qx qx WHERE
- totalaum.time('2025-10-01 00:00:00','2025-10-31 23:59:59').find(name = 'cl').unit('avg', '1M').assert($1 > 0) limit -1
- /**
- output()
- count(39)
- **/
- ;
- SELECT ID,name FROM /cq_post_demo/qx qx WHERE
- balance.time('2025-10-01 00:00:00','2025-10-31 23:59:59').find(name = 'cl').unit('avg', '1M').assert($1 > 0) limit -1
- /**
- output()
- count(39)
- **/
- ;
- SELECT ID,name,totalaum,balance FROM /cq_post_demo/qx qx WHERE
- totalaum.time('2025-10-01 00:00:00','2025-10-31 23:59:59').find(name = 'cl').unit('avg', '1M').assert($1 > 0) limit -1
- /**
- output()
- count(39)
- **/
- ;
- SELECT ID,name,totalaum,balance FROM /cq_post_demo/qx qx WHERE
- balance.time('2025-10-01 00:00:00','2025-10-31 23:59:59').find(name = 'cl').unit('avg', '1M').assert($1 > 0) limit -1
- /**
- output()
- count(39)
- **/
- ;
- SELECT ID,name,totalaum,balance FROM /cq_post_demo/qx qx WHERE
- totalaum.time('2025-10-01 00:00:00','2025-10-31 23:59:59').find(name = 'cl').unit('avg', '1M').assert($1 > 0)
- AND balance.time('2025-10-01 00:00:00','2025-10-31 23:59:59').find(name = 'cl').unit('avg', '1M').assert($1 > 0) limit -1
- /**
- output()
- count(39)
- **/
- ;
|