simplified_path_constraint.sql 184 B

1234567891011
  1. USE plato;
  2. $i = select
  3. key,
  4. AsTuple(key, subkey) as t,
  5. "value:" || value as value
  6. from Input;
  7. select distinct t from $i order by t;
  8. select * from $i where key == "020";