I am trying to calculate commissions payable to clients at the beginning of every month (providing their commission is more then £25).
Here is the SQL:
SELECT SUM(invoiceCommision) as totalSum
FROM tbl_statement_items
WHERE fk_rid = '1'
AND dt > DATE_SUB(CURDATE(), INTERVAL 1 MONTH)
AND totalSum > 25;
However when I run this, mysql says: 1054 - Unknown column 'totalSum' in 'where clause'.
I then tried
SELECT *
FROM tbl_statement_items
WHERE fk_rid = '1'
AND dt > DATE_SUB(CURDATE(), INTERVAL 1 MONTH)
AND SUM(invoiceCommision) > 25;
This gives me error: 1111 - Invalid use of group function.
I am stumped on this one, any help would be appreciated.