Hello I want to select the last 700 users of my database. Now I want to ask if this is correct: order by ID ASC LIMIT 0,700
No, you need to do this by ORDER BY ID DESC LIMIT 0, 700. ASC(Ascending) will not work for you, because you want to select the last 700 users, not the first 700 users right?