I am trying to count the number of rows in a table that have an area, how can I achieve this, I currently have this query written,
SELECT DISTINCT area
FROM cv
WHERE status = 'SHOW'
AND is_complete = 'TRUE'
ORDER BY area ASC
This query currently returns,
area
------------------
West Yorkshire
Lanchashire
What I am wanting is something like,
area Number
------------------------
West Yorkshire 19000
Lancashire 7000