blob: f5e2aab6e58093ba74bdf728c5f46bf55f612e43 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* postgres can not */
USE plato;
select
key,
subkey,
value,
TablePath() as path
from
range("", "Input1", "Input5")
where key != ""
order by key, subkey, path;
|