瀏覽代碼

test distinct & group by

wecisecode 1 周之前
父節點
當前提交
b0cabc5c07
共有 1 個文件被更改,包括 8 次插入0 次删除
  1. 8 0
      odbctest/mql/uino/062.mql

+ 8 - 0
odbctest/mql/uino/062.mql

@@ -1,17 +1,25 @@
 
 
 
+select sz_g from /univ_demo/person WHERE sz_g != '' limit -1
+/**
+output()
+count(1393)
+**/
+;
 
 
 select sz_g from /univ_demo/person WHERE sz_g != '' group by sz_g
 /**
 output()
+count(50)
 **/
 ;
 
 select distinct sz_g from /univ_demo/person WHERE sz_g != '' 
 /**
 output()
+count(50)
 **/
 ;