PDA

View Full Version : Need a query to remove attachments


ericgtr
06-16-2005, 01:42 PM
Anyone have a query they can throw my way that will remove all attachments in a specific forum?

Marco van Herwaarden
06-16-2005, 02:24 PM
You will have to join with the post and the thread table to find out in which forum an attachment is posted.

Andreas
06-16-2005, 02:52 PM
You will need at least mySQL 4.0.2 for this type of query:


DELETE FROM attachment USING attachment, post, thread WHERE attachment.postid = post.postid AND thread.threadid = post.threadid AND thread.forumid = X

ericgtr
06-16-2005, 04:25 PM
Thanks, seemed to work fine :)