You will need to join your tables in the query by a unique field. this is very rought since I do not know the relation ship between your tables, but you need to do something like this
SELECT TOPIC.*,OTHERTABLE.PostText FROM TOPIC,OTHERTABLE WHERE OTHERTABLE.TOPIC_ID = TOPIC.TOPIC_ID AND OTHERTABLE.PostText LIKE '%whatever%'