Hi all,
How do I select the most recentl data entry into a database table?
thanks,
Kevin.
I'd guess by using something like:
Select * from db Order by ID DESC limit 1
That seems to work. Thanks!!