I have looked through old posts on this and haven't found an answer, any suggestions would be great - Thanks.
Notes:
ACESS 2007
distinct_ids = 390 records
memodata.id = 714 records
RIGHT JOIN returns 714 records (with SELECT DISTINCT, memo fields are trunctated)
Notes:
ACESS 2007
distinct_ids = 390 records
memodata.id = 714 records
RIGHT JOIN returns 714 records (with SELECT DISTINCT, memo fields are trunctated)
Code:
SELECT ids_memodata.* FROM ids_memodata RIGHT JOIN distinct_ids ON ids_memodata.id = distinct_ids.id;
Comment