blob: 5c8b94fc259086e0e574b433b0619aa3eb0fbeab (
plain) (
blame)
1
2
3
4
5
6
7
|
PRAGMA DisableSimpleColumns;
use plato;
from (select key, subkey || key as subkey, value, TablePath() as tp from Input1) as a
join Input2 as b using(key)
select a.key, a.subkey, a.tp, b.value
order by a.key, a.tp;
|