Browse Source

stringfloat

wecisecode 11 hours ago
parent
commit
2b53692e57
1 changed files with 25 additions and 0 deletions
  1. 25 0
      odbctest/mql/uino/078.stringfloat.sum.mql

+ 25 - 0
odbctest/mql/uino/078.stringfloat.sum.mql

@@ -0,0 +1,25 @@
+
+select id,name,
+  balance.time('2025-10-01 00:00:00','2025-10-02 23:59:59')
+from /cq_post_demo/qx where name in ('永川','合川')
+/**
+output()
+**/
+;
+
+
+SELECT qx.name , qx.balance  
+FROM /cq_post_demo/qx qx 
+WHERE balance.time('2025-10-01 00:00:00','2025-10-02 23:59:59').find(name = 'cl').unit('sum', '1d').assert($1 > 0)
+/**
+output()
+**/
+;
+
+select id,name,
+  balance.time('2025-10-01 00:00:00','2025-10-02 23:59:59').find(name='cl').unit('sum', '1d')
+from /cq_post_demo/qx where name in ('永川','合川')
+/**
+output()
+**/
+;