evergreean43
Technical User
I currently have a query where I use distinct to fetch distinct lastnames from my Access 2000 database:
Now I need to just fetch the top 5 but it gives me error when I do it:
Please advise.
Code:
select distinct lastname, firstname from user;
Now I need to just fetch the top 5 but it gives me error when I do it:
Code:
select top 5, distinct lastname, firstname from user;
Please advise.