SELECT Table1.FlowerName
FROM Table1 LEFT JOIN Table2 ON Table1.FlowerName = Table2.FlowerName
WHERE (((Table2.FlowerName) Is Null));
This is the case of Intersection.
Nice job. Happy to see you getting the answer. Can you please the SQL with Syntax ? I will copy and paste to see if it works for me. Rgds.
SELECT tbl_One.flower
, tbl_two.flower
FROM tbl_One
LEFT JOIN tbl_two ON
tbl_One.flower = tbl_two.flower
WHERE
(((tbl_two.flower) Is Null));
Thanks a lot. Learnt something today.