FengShui1998
MIS
Hello,
I have a table with timestamps. I am trying to find or return the newest/latest record from MySQL. Any ideas? Is there a function that will return the latest record?
Thanks in advance.
fengshui_1998
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT * FROM daTable ORDER BY daTimestamp DESC LIMIT 1;