blob: 4e83143e426b61aae5eccabe90575c7b2f4021a8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
/* postgres can not */
USE plato;
INSERT INTO Output
SELECT "1" as key, "1" as subkey, "1" as value;
PRAGMA File("file", "dummy");
INSERT INTO Output
SELECT * from Input where key < "030";
|