I have a table with several records. There is an id field. I would like to select the record with the most recent id (i.e. the ighest id).
Any ideas?
I have a table with several records. There is an id field. I would like to select the record with the most recent id (i.e. the ighest id).
Any ideas?
User order by with desc
order:
select * from t
order by id desc
limit 1