I can not really advice changing any id's in the database, as a lot of information is linked across tables using the id's.
But you could try the following (backup first!!!!!):
[sql]UPDATE thread SET threadid = <newthreadid> WHERE threadid = <currentid>;[/sql]
[sql]UPDATE post SET threadid = <newthreadid> WHERE threadid = <currentid>;[/sql]
Never set to a new threadid that is higher then your current highest id!
Also this will break any thread subscriptions etc...
PS Backup first!!!!!!
Use this at your own risk
|