this works
SELECT COUNT(*) AS count ,transaction_id FROM loans_applicant GROUP BY transaction_id
however i want to do this
SELECT COUNT(*) AS count ,transaction_id FROM loans_applicant GROUP BY transaction_id WHERE count > 4
how can i do that ?
whereclause to ahavingclause.