Hello all,
I'm trying to return the last 5 entered records into a table by:
SELECT TOP(5)
tbl_link.id
,tbl_link.title
,tbl_link.urlPath
FROM tbl_link
ORDER BY tbl_link.id DESC;
Access keeps throwing an error...
Does anyone know the correct code?
Thanks in advance
I'm trying to return the last 5 entered records into a table by:
SELECT TOP(5)
tbl_link.id
,tbl_link.title
,tbl_link.urlPath
FROM tbl_link
ORDER BY tbl_link.id DESC;
Access keeps throwing an error...
Does anyone know the correct code?
Thanks in advance