Simon Willison’s Weblog
Owned by simonw, visibility: Public
WITH tags AS ( SELECT (regexp_matches(body, '<(\w+)[^>]*>', 'g'))[1] AS tag FROM blog_entry ) SELECT tag, COUNT(*) AS count FROM tags GROUP BY tag ORDER BY count DESC
63 rows
Duration: 268.32ms