I thought that this would be easy.

I have a "word" or two of what was in a deleted post. But I can't find the post.
I also think I know which Moderator did it (1234)

Suggestions?

Using MySQL Query Browser:

SELECT * FROM ubbt_ADMIN_LOG where LOG_ACTION = 'DELETE_POST'
and
SELECT * FROM ubbt_POSTS where USER_ID = 1234 and POST_BODY like "%word%"
and
SELECT * FROM ubbt_ADMIN_LOG where LOG_ACTION = 'DELETE_POST'and USER_ID = 1234

Using the last SELECT statement above, I can find the TITLE of the POST -- How do I find the actual Post?


--BIll B