karlomutschler
Programmer
Hi all,
From the result of this query I wish to select all of those whose SUMmed revenue_amount for the 3 months is greater than say 250.
SELECT contract_id
,revenue_amount
-- ,SUM(revenue_amount)
FROM contract_turnover
WHERE revenue_date BETWEEN '01.04.2001' AND '01.06.2001'
;
TIA for your help
Kind regards.
Karlo
From the result of this query I wish to select all of those whose SUMmed revenue_amount for the 3 months is greater than say 250.
SELECT contract_id
,revenue_amount
-- ,SUM(revenue_amount)
FROM contract_turnover
WHERE revenue_date BETWEEN '01.04.2001' AND '01.06.2001'
;
TIA for your help
Kind regards.
Karlo