PDA

View Full Version : check if thread exist


zoro
08-28-2005, 02:30 PM
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.

zoro
08-29-2005, 12:26 PM
MarcoH64 Yeah

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.

zoro
08-29-2005, 06:22 PM
thank you very much