Topic: Clean orphan posts
Hello.
In my database, I have several hundreds posts that are not effectively displayed in my board.
To identify them, I performed this request from an old script :
SELECT p.id FROM forum_posts p LEFT JOIN forum_topics t ON p.topic_id=t.id WHERE t.id IS NULL
Do you think I can delete safely this posts?
Thank you.