return count of inserted rows

This commit is contained in:
Paul Trowbridge 2020-11-27 02:24:20 -05:00
parent bceac1d195
commit 3b3a2f7b39
2 changed files with 7 additions and 3 deletions

View File

@ -152,6 +152,7 @@ SELECT
FROM
baseline o$$||E'\n'||_perd_joins||$$
)
,ins AS (
INSERT INTO
fc.live
SELECT
@ -160,7 +161,10 @@ FROM
incr i
WHERE
i.$$||_order_date||$$ >= 'app_first_forecast_date'::date$$||$$
OR i.$$||_ship_date||$$ >= 'app_first_forecast_date'::date$$
OR i.$$||_ship_date||$$ >= 'app_first_forecast_date'::date$$||$$
RETURNING *
)
SELECT COUNT(*) num_rows FROM ins$$
--any orders in the forecast period, or any sales in the forecast period (from open orders)
INTO
_baseline;

View File

@ -87,8 +87,8 @@ server.get('/baseline', bodyParser.json(), function(req, res) {
//execute the sql and send the result
args.push(req.body.app_baseline_from_date);
console.log(sql);
res.send(sql);
//Postgres.FirstRow(sql, [], res)
//res.send(sql);
Postgres.FirstRow(sql, [], res)
};
})