C
Chris Kennedy
I have two tables with some duplicate filenames in a field. I want to
extract the ones in the tmpfilenames that aren't in the tblWeb table. This
returns nothing when there are definitely filenames in the tmpfilenames
table that arean't in the tblWeb table
SELECT FileName FROM tmpfilenames WHERE FileName not in (select
picturefilename from tblWeb);
extract the ones in the tmpfilenames that aren't in the tblWeb table. This
returns nothing when there are definitely filenames in the tmpfilenames
table that arean't in the tblWeb table
SELECT FileName FROM tmpfilenames WHERE FileName not in (select
picturefilename from tblWeb);