Topic: Synchronize last_post
Is there an easy way (i.e. besides looping over ever user) to sync the last_post field for all users? I don't have much experience with queries, so I can't quite wrap my head around this one.
You are not logged in. Please login or register.
PunBB Forums → PunBB 1.2 discussion → Synchronize last_post
Is there an easy way (i.e. besides looping over ever user) to sync the last_post field for all users? I don't have much experience with queries, so I can't quite wrap my head around this one.
Assuming you use a version of MySQL that supports subselects:
update users set last_post = (select posted from posts where poster_id = users.id order by posted desc limit 1)
PunBB Forums → PunBB 1.2 discussion → Synchronize last_post
Powered by PunBB, supported by Informer Technologies, Inc.