And since the thread likely had posts not by the user you're removing deleting posts for you now have orphaned posts (i.e. posts not attached to an existing thread).
To delete them run the following:
Code:
DELETE FROM post WHERE NOT threadid IN (SELECT threadid FROM thread)
Note: this will remove all posts that are not associated with a thread, not just the ones related to threads you have just deleted.