I am trying to find the 500,000th post on our forum to award the member a prize.
We know roughly the day that we passed this milestone (last Saturday, around 7PM)
I have tried the following SQL
But it doesn't come up with what I would expect (this post is about 10 days out / early).
What am I missing?
Thanks
We know roughly the day that we passed this milestone (last Saturday, around 7PM)
I have tried the following SQL
Code:
SELECT * FROM xf_post WHERE message_state = 'visible' ORDER BY post_date LIMIT 1 OFFSET 499999;
But it doesn't come up with what I would expect (this post is about 10 days out / early).
What am I missing?
Thanks