blob: 8e1a9d863fe7dd2c14a11a76610ba1b1b502f03d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
/* syntax version 1 */
/* postgres can not */
/* hybridfile can not YQL-17764 */
/* custom check: len(yt_res_yson[0]['Write'][0]['Data']) < 3 */
use plato;
pragma DisableSimpleColumns;
$a = select * from Input where key > "199" and value != "bbb";
select * from (select a.value, b.value from $a as a inner join Input as b using(subkey)) tablesample bernoulli(25);
|