*** Untested ***
(As well as above code was)
Assuming that your database is consistent, you are not using table prefixes and you are running at least mysql 4.0.4
[sql]update forum, user, userfield set forum.lastposter = userfield.field5 where userfield.userid=user.userid and user.username=forum.lastposter[/sql]
[sql]update thread, user, userfield set thread.lastposter = userfield.field5 where userfield.userid=user.userid and user.username=thread.lastposter[/sql]
|