Get latest row form DB

admin

Administrator
Staff member
Theres gotta be some easier way of getting info from the latest row than first getting the max counter and then getting the rest by using the counter?

This doesn磘 work but something like this perhapsd ooes, please help???

SELECT rubrik FROM tbl_saljes
WHERE counter=(SELECT MAX(counter)
FROM tbl_saljes)
 
Back
Top