소스 검색

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)
 **/
 ;