G
Guest
Is there a way to use an autonumber in a query? Not a pre-existing field. I'm
running this
SELECT TOP 50 Count(HOME.EMPLOYER) AS CCount, HOME.EMPLOYER
FROM HOME
GROUP BY HOME.EMPLOYER
ORDER BY Count(HOME.EMPLOYER) DESC;
I want an integer to the left to show the actual rank. I know with ADO I would
be incrementing anyway with i, but how do I do it with a query
(e-mail address removed)
running this
SELECT TOP 50 Count(HOME.EMPLOYER) AS CCount, HOME.EMPLOYER
FROM HOME
GROUP BY HOME.EMPLOYER
ORDER BY Count(HOME.EMPLOYER) DESC;
I want an integer to the left to show the actual rank. I know with ADO I would
be incrementing anyway with i, but how do I do it with a query
(e-mail address removed)