gi11ies
Programmer
- Mar 26, 2002
- 52
Im wondering how I return the last three records in any table?
Any help would be great
Gillies
Any help would be great
Gillies
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 3 tblIssue.IssueID
FROM tblIssue
ORDER BY tblIssue.IssueID DESC;
Select TOP 3 fld1, fld2, fld3, ...
From tbl
Order By fld1, fld2;