MontecitoDeb
Programmer
I have a table that has no fields containing unique data. I would like to get the first 10 records entered, i.e. bottom 10 if I could sort by date entered. Again, I have no field that I can sort by. Is this possible?
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.
ALTER TABLE tblName
ADD DateAdded datetime2 DEFAULT (GETDATE());