blob: 07417c5874fcc5b55433ff94f31a698a8e792c9c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
/* postgres can not */
PRAGMA SimpleColumns;
USE plato;
$req = (SELECT 100500 as magic, t.* FROM Input as t);
--INSERT INTO Output
SELECT subkey as sk, value as val FROM $req ORDER BY sk
|