aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/sampling/bind_expr_subquery.sql
blob: a734691f7063c7de476e9ed49f4094546fe1e6d2 (plain) (blame)
1
2
3
4
5
6
7
/* postgres can not */
USE plato;

$rc = (select count(*) from Input);
$sample_size = 10;

select * from Input tablesample bernoulli(MIN_OF($sample_size * 100.0 / $rc, 100.0)) order by key;