View Full Version : check if thread exist
Hello
i got table that got threadid but some of the threads were deleted how can i check if the threadid from my table still exist in the thread table and if not to delete it ??
:surprised:
Marco van Herwaarden
08-28-2005, 09:29 PM
You are looking for a simple SQL, that can do the job once?
AN-net
08-28-2005, 10:40 PM
use the fetch_info function and then check to see if it returns a thread_id, if it doesnt run a delete query to delete that entry from your table.
Marco van Herwaarden
08-29-2005, 04:09 PM
You could do something like:
DELETE FROM mytable
WHERE NOT EXISTS (select threadid FROM thread WHERE thread.threadid = mytable.threadid)
The above will only work for MySQL 4.1 (or was it 4.0) and above.
PS This was not tested, so use on a test database first.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.