使用者隨機抽樣。返回True表示該行資料被抽中。
使用限制
視窗函數的使用限制如下:
視窗函數只能出現在
select
語句中。視窗函數中不能嵌套使用視窗函數和彙總函式。
視窗函數不能和同層級的彙總函式一起使用。
命令格式
boolean cluster_sample(bigint <N>) OVER ([partition_clause])
boolean cluster_sample(bigint <N>, bigint <M>) OVER ([partition_clause])
命令說明
cluster_sample(bigint <N>)
:表示隨機抽取N條資料。cluster_sample(bigint <N>, bigint <M>)
:表示按比例(M/N)隨機抽取。即抽取partition_row_count×M / N
條資料。partition_row_count
指分區中的資料行數。
參數說明
N:必填。BIGINT類型常量。N為NULL時,傳回值為NULL。
M:必填。BIGINT類型常量。M為NULL時,傳回值為NULL。
partition_clause:可選。詳情請參見frame_clause。
傳回值說明
返回BOOLEAN類型。
樣本資料
為便於理解各函數的使用方法,本文為您提供來源資料,基於來源資料提供函數相關樣本。建立表emp,並添加資料,命令樣本如下:
create table if not exists emp
(empno bigint,
ename string,
job string,
mgr bigint,
hiredate datetime,
sal bigint,
comm bigint,
deptno bigint);
tunnel upload emp.txt emp; --請根據您上傳資料檔案的實際path(路徑以及名稱)替換emp.txt
emp.txt中的資料如下:
7369,SMITH,CLERK,7902,1980-12-17 00:00:00,800,,20
7499,ALLEN,SALESMAN,7698,1981-02-20 00:00:00,1600,300,30
7521,WARD,SALESMAN,7698,1981-02-22 00:00:00,1250,500,30
7566,JONES,MANAGER,7839,1981-04-02 00:00:00,2975,,20
7654,MARTIN,SALESMAN,7698,1981-09-28 00:00:00,1250,1400,30
7698,BLAKE,MANAGER,7839,1981-05-01 00:00:00,2850,,30
7782,CLARK,MANAGER,7839,1981-06-09 00:00:00,2450,,10
7788,SCOTT,ANALYST,7566,1987-04-19 00:00:00,3000,,20
7839,KING,PRESIDENT,,1981-11-17 00:00:00,5000,,10
7844,TURNER,SALESMAN,7698,1981-09-08 00:00:00,1500,0,30
7876,ADAMS,CLERK,7788,1987-05-23 00:00:00,1100,,20
7900,JAMES,CLERK,7698,1981-12-03 00:00:00,950,,30
7902,FORD,ANALYST,7566,1981-12-03 00:00:00,3000,,20
7934,MILLER,CLERK,7782,1982-01-23 00:00:00,1300,,10
7948,JACCKA,CLERK,7782,1981-04-12 00:00:00,5000,,10
7956,WELAN,CLERK,7649,1982-07-20 00:00:00,2450,,10
7956,TEBAGE,CLERK,7748,1982-12-30 00:00:00,1300,,10
樣本
隨機抽取5條資料,命令樣本如下:
select deptno, sal from ( select deptno, sal, cluster_sample(5) over () as flag from emp ) sub where flag = true;
返回結果如下:
+------------+------------+ | deptno | sal | +------------+------------+ | 30 | 2850 | | 30 | 1500 | | 20 | 3000 | | 10 | 2450 | | 10 | 1300 | +------------+------------+
隨機抽取約20%的值,命令樣本如下:
select deptno, sal from ( select deptno, sal, cluster_sample(5, 1) over () as flag from emp ) sub where flag = true;
返回結果如下:
+------------+------------+ | deptno | sal | +------------+------------+ | 10 | 2450 | | 20 | 3000 | | 20 | 3000 | +------------+------------+
從每組中抽取約20%的值,命令樣本如下:
select deptno, sal from ( select deptno, sal, cluster_sample(5, 1) over (partition by deptno) as flag from emp ) sub where flag = true;
返回結果如下:
+------------+------------+ | deptno | sal | +------------+------------+ | 10 | 1300 | | 20 | 2975 | | 30 | 950 | +------------+------------+
相關函數
CLUSTER_SAMPLE函數屬於視窗函數,更多對指定開窗列的資料進行求和、數值排序的相關函數請參見視窗函數。