multi_to_empty_constraint.sql 246 B

12345678
  1. /* syntax version 1 */
  2. USE plato;
  3. select key, some(subkey) from (select * from Input where key > "010" and value in []) group by key
  4. union all
  5. select key, some(subkey) from (select * from Input where key > "020" and value in []) group by key
  6. ;