Finding all untagged topics

I am looking for a query using Data Explorer to grab all untagged topics.

SELECT t.id AS topic_id
FROM topics t
LEFT JOIN topic_tags tt ON tt.topic_id = t.id
WHERE tt.tag_id IS NULL
3 Likes

I was going to add in a little splash of not deleted and not PM :slight_smile:

SELECT t.id AS topic_id
FROM topics t
LEFT JOIN topic_tags tt ON t.id = tt.topic_id
WHERE tt.tag_id IS NULL
AND t.deleted_at IS NULL
AND t.archetype = 'regular'
ORDER BY topic_id DESC
3 Likes

This is super helpful… both @RGJ and yourself… Thank you!

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.