What is the Access SQL for a subquery that counts records from another table?
In SQL Server the following statemant works fine, can anyone help me make this work from an Access SQL statement?
SELECT U.Name, NumOfItems = (SELECT Count(*) FROM Item I WHERE I.UserIndex = U.UserIndex)
FROM User U...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.