I think I've got this right, but figured I'd ask before doing something that may or may not mess up my forums. I'd like to lock all threads in a forum. Only problem is, that would mean going through and closing several hundred-plus threads. Here's the query I'm thinking will do the trick, I just want to know if it's the right one (Note that vb3_ represents a table prefix):
Code:
UPDATE 'vb3_thread' SET 'open' = 0 WHERE 'forumid' = (forum's ID#)
Yea or nay?