bind_join_right.sql 360 B

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