For gnucash-sql, show the summary at the end so it doesn't scroll off screen.
This commit is contained in:
parent
65f8836153
commit
216ab19385
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue