Mysql. Limit $x1, $x2. Is it possible to do Limit $x2, $x1?

reddy_007

New Member
For example, $x1 = 10, $x2 = 25 then it will work Limit $x1, $x2. But I want to make Limit $x2, $x1 and it doesn't work. I want to get from newest to oldest entry from that list. ORDER BY doesn't workedited you can close it, I've figured out by myself. I use ORDER BY a_time DESC LIMIT $x2-$x1now, so thanks.
 
Back
Top