yql-4275.sql 177 B

12345678910
  1. PRAGMA DisableSimpleColumns;
  2. /* postgres can not */
  3. USE plato;
  4. SELECT
  5. *
  6. FROM Input as x1
  7. JOIN (select key ?? 4 as key from Input) as x2 on x1.key == x2.key
  8. WHERE x2.key == 4
  9. ;