blob: 0f5f81aae8990525c321d3d5d4c7a93d56703651 (
plain) (
blame)
1
2
3
4
5
6
|
/* postgres can not */
USE plato;
PRAGMA AllowDotInAlias;
--INSERT INTO Output
SELECT key as `.key`, subkey as `sub.key`, value as `value.` FROM Input ORDER BY `.key`, `sub.key`
|