blob: d66d589ab821f1dab16caafdd22d8e13f7616bc4 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
/* syntax version 1 */
USE plato;
select key, some(subkey) from (select * from Input where key > "010" and value in []) group by key
union all
select key, some(subkey) from (select * from Input where key > "020" and value in []) group by key
;
|