This may belong in the Access forum but I'm not sure.
I have the following query and use Access 2000. The query is ran in a VB Program. I've tried to run it in Access itself and get the same results though.
It works fine until the ID number gets past 10. Once it gets past 10, the result always comes back 9.
What am I missing here?
Rob
Just my $.02.
I have the following query and use Access 2000. The query is ran in a VB Program. I've tried to run it in Access itself and get the same results though.
Code:
SELECT DISTINCTROW Max([Client].[ID]) AS ID
FROM Client;
It works fine until the ID number gets past 10. Once it gets past 10, the result always comes back 9.
What am I missing here?
Rob
Just my $.02.