Hello,
I have a serious problem linking 2 memo fields. I need some help. I have 2 tables say A and B. Table A has unique URLs and table B has URLS with duplicates. I need to find the count on matches and non matches.
The following query gives the result for count of matches.
SELECT A.URL, COUNT(B.URL) AS TEMP
FROM A, B
WHERE A.URL=B.URL
GROUP BY A.URL;
The above query gives me only those URLs which matches. I had to use where condition because Left Join did not work.
I would like to know how to find the count of non-matches for URLs. Is this possible with memo fields?
Thanks a lot in advance
I have a serious problem linking 2 memo fields. I need some help. I have 2 tables say A and B. Table A has unique URLs and table B has URLS with duplicates. I need to find the count on matches and non matches.
The following query gives the result for count of matches.
SELECT A.URL, COUNT(B.URL) AS TEMP
FROM A, B
WHERE A.URL=B.URL
GROUP BY A.URL;
The above query gives me only those URLs which matches. I had to use where condition because Left Join did not work.
I would like to know how to find the count of non-matches for URLs. Is this possible with memo fields?
Thanks a lot in advance