I have got 2 queries which i would prefer to combine into 1, is this possible.
My first query is
SELECT CONTACT1.COMPANY
FROM CONTACT1
GROUP BY CONTACT1.COMPANY;
then my second uses the first query, which i called Query47
SELECT Count(Query47.COMPANY) AS CountOfCOMPANY
FROM Query47;
Many thanks in advance
My first query is
SELECT CONTACT1.COMPANY
FROM CONTACT1
GROUP BY CONTACT1.COMPANY;
then my second uses the first query, which i called Query47
SELECT Count(Query47.COMPANY) AS CountOfCOMPANY
FROM Query47;
Many thanks in advance