I am trying to create a SQL call that first order all the rows by date and returns all the rows starting from the number 25.
So far I have
"SELECT * FROM 'users' ORDER BY 'table'.'regdate' OFFSET 24"
But this is not working .. How can I do this ?