How can i select the newest 5 rows from mysql (newest by id for example) then order them asc or desc ??
the problem is i have 1,2,3,4,5,6,7 , i want to select the newest 2 for example (6,7) then order them asc or desc (6,7 or 7,6) , but if i use the orderby then the limit it would be (1,2) or (7,6) , is there anyway to do it from ONE sql statement ?
thank you
1 Answer