1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* postgres can not */
USE plato;
--INSERT INTO Output
SELECT
WeakField(animal, "String"),
WeakField(size, "String") as sizeRating,
WeakField(weightMin, "Float"),
WeakField(weightMax, "Float"),
WeakField(wild, "Bool"),
WeakField(pet, "Bool", false),
WeakField(miss, "Bool", true)
FROM Input
ORDER BY weightMin
|