I've got this so far
SELECT * FROM FORUM_A_TOPICS t
INNER JOIN FORUM_A_REPLY r
ON r.TOPIC_ID = t.TOPIC_ID
WHERE r.R_DATE < '20031015000000'
Obviously that is a select not a delete, does this look correct. It should delete all archived topics and replies old than 1 year when I replace "SELECT * FROM" with "DELETE"