RoguePoet01
Programmer
Hi,
Is there a way to select only 40 of the "Top" or "most recent" records in a query?
Thanks.
Is there a way to select only 40 of the "Top" or "most recent" records in a query?
Thanks.
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 TOP 40 mydate,
myname
FROM mydatabase
ORDER BY mydate ASC