All I want to do is select the last 5 records of a table. I know that this selects the first five:
SELECT TOP 5 <FIELDNAME> FROM <TABLENAME>
If I change the TOP to BOTTOM it gives me an error. Bottom is probably not correct. If anybody can help me I'll be very grateful.
Thanx
Able
SELECT TOP 5 <FIELDNAME> FROM <TABLENAME>
If I change the TOP to BOTTOM it gives me an error. Bottom is probably not correct. If anybody can help me I'll be very grateful.
Thanx
Able