I assume that your question was about how to write the SQL query to get the list of tags and their frequencies. Once you have that, formatting the display of the cloud however you want (large font sizes for common tags, semi-transparent for rare ones?) is trivial. Because I'm feeling generous, here's the query I use on my blog:
SELECT tags.name AS name, count(tags.name) AS freq
FROM cxn_blog_tags cxn
JOIN tags ON tags.id = cxn.tag_id
GROUP BY cxn.tag_id
You could throw in a "WHERE freq > 5" clause to filter out the rare tags. Be advised that the query is pretty expensive, you don't want to do it on every pageview. I cache the result to a txt file, and only run the query when a post has been added, edited, or deleted. You could also do it on a cron job if the site was very active.
My schema is like this:
posts table: has id column as PK. Contains blog post info in other columns.
tags table: has id column as PK. Also contains name of tag.
cxn_blog_tags table: has two columns, post_id (FK to posts.id) and tag_id (FK to tags.id). As such it defines the many-to-many relationship between blog posts and tags.
If your schema is such that the posts table has something like a tags column, which has a space- or comma-delimited list, then you will have to do more work (that's what you get for not normalizing your database!).