blob: 277a6346262163a3089a5ee670e409fa9b36a15c (
plain) (
blame)
1
2
3
4
5
6
7
8
|
PRAGMA DisableSimpleColumns;
PRAGMA DisablePullUpFlatMapOverJoin;
use plato;
from (select key, subkey || key as subkey, value, TableRecordIndex() as tr from Input1) as a
join Input2 as b using(key)
select a.key, a.subkey, a.tr, b.value
order by a.key, a.tr;
|