I am using this statement to count the numbers of occurrences of a particular ID
SELECT cms_id, COUNT( * ) AS Number
FROM website
GROUP BY cms_id
ORDER BY `website`.`cms_id` ASC
LIMIT 0 , 30
However in another table I have the title name for each of the cms_id
cms_id cms_name
1 wordpress
How can I then retrieve the name form the other table and show this instead of the cms_ID