For gnucash-sql, show the summary at the end so it doesn't scroll off screen.

This commit is contained in:
Chris Berkhout 2021-08-24 13:49:35 +02:00
parent 65f8836153
commit 216ab19385

View file

@ -35,10 +35,10 @@ WHERE tp.base = g1.mnemonic
AND tp.guid NOT IN (SELECT guid FROM prices) AND tp.guid NOT IN (SELECT guid FROM prices)
; ;
-- Show the summary.
SELECT * FROM summary;
-- Show the final relevant rows of the main prices table -- Show the final relevant rows of the main prices table
SELECT 'final' AS status, p.* FROM prices p WHERE p.guid IN (SELECT guid FROM new_prices) ORDER BY p.date; SELECT 'final' AS status, p.* FROM prices p WHERE p.guid IN (SELECT guid FROM new_prices) ORDER BY p.date;
-- Show the summary.
SELECT * FROM summary;
COMMIT; COMMIT;