You could try this query, it will select all draft posts that are “uncategorized”, its hard to say exactly what query will match them when I can’t see how they are injected, if they are not set as drafts then you can try to modify the query a bit:
SELECT * FROM wp_posts p LEFT OUTER JOIN wp_term_relationships r ON r.object_id = p.ID LEFT OUTER JOIN wp_terms t ON t.term_id = r.term_taxonomy_id WHERE p.post_status = 'draft' AND p.post_type = 'post' AND t.slug = 'uncategorized'
If you can provide a screen shot from phpmyadmin we might be able to help more.