Quote:
Originally Posted by squidsk
You can just grab all threads/posts that don't exist. You can alter the above queries as follows:
Code:
INSERT INTO post
(SELECT *
FROM post7
WHERE NOT threadid IN (SELECT threadid FROM thread))
Code:
INSERT INTO thread
(SELECT *
FROM thread7
WHERE NOT threadid IN (SELECT threadid FROM thread))
EDIT: You have to do the post query first otherwise the deleted thread will already be restored in the thread table.
|
I am very confused by these. I do not know where to begin with the script. I have the first query run first on which database?
Thanks Guys
Lynne, You are not kidding!