Hi, the following is my SQL statement:
SELECT DISTINCTROW Count([QryDesc Master].CLUSCODE) AS Count INTO [UpCurr Desc]
FROM [QryDesc Master] LEFT JOIN [QryDesc Curr] ON [QryDesc Master].MatchKey = [QryDesc Curr].MatchKey
HAVING ((([QryDesc Curr].MatchKey) Is Null));
QryDesc Master & QryDesc Curr are twl select queries. How can I make these three queries into one query?
Any help is greatly appreciated.
SELECT DISTINCTROW Count([QryDesc Master].CLUSCODE) AS Count INTO [UpCurr Desc]
FROM [QryDesc Master] LEFT JOIN [QryDesc Curr] ON [QryDesc Master].MatchKey = [QryDesc Curr].MatchKey
HAVING ((([QryDesc Curr].MatchKey) Is Null));
QryDesc Master & QryDesc Curr are twl select queries. How can I make these three queries into one query?
Any help is greatly appreciated.