blob: bb6fa176f70661e677172b1ef35316321bf43b0e (
plain) (
blame)
1
2
3
4
5
|
PRAGMA DisableSimpleColumns;
select coalesce(Input1.key, "_null") as a, coalesce(Input1.subkey, "_null") as b, coalesce(Input3.value, "_null") as c
from plato.Input1
full join plato.Input3 using (key)
order by a, b, c;
|