include change type

This commit is contained in:
Paul Trowbridge 2019-03-27 12:24:49 -05:00
parent 62473aee92
commit d3e1ea47bd

View File

@ -1,7 +1,7 @@
SELECT
iterdef->>'user' "user",
(iterdef->>'stamp')::timestamptz "stamp",
iterdef->>'mesasage' "comment",
iterdef->>'type' "type",
round(SUM(fb_val_loc * r_rate)::numeric,2) sales,
jsonb_pretty(iterdef) def
FROM
@ -11,7 +11,7 @@ WHERE
GROUP BY
iterdef->>'user',
iterdef->>'stamp',
iterdef->>'message',
iterdef->>'type',
iterdef
ORDER BY
"stamp" DESC