0
votes
Simple SQL problem (MySQL)
If this is a query you will run many times, I would consider to make a view which selects the most recent revision per pageid:
create view LatestRevision
as
Select pageid, max(numb …
