desirulez
08-25-2013, 01:19 PM
Hello
For some reasons I have to move certain threads from one forum to another using MySQL. I wrote this query which does the work, but I am not sure if that's a perfect way to do it or you have to update other tables too. Any help will be appreciated. Here's my query:
UPDATE thread
SET forumid = xx
WHERE threadid IN (xxxx, xxxx, xxxx, threadids, xxx...);
For some reasons I have to move certain threads from one forum to another using MySQL. I wrote this query which does the work, but I am not sure if that's a perfect way to do it or you have to update other tables too. Any help will be appreciated. Here's my query:
UPDATE thread
SET forumid = xx
WHERE threadid IN (xxxx, xxxx, xxxx, threadids, xxx...);