SELECT *
FROM MyTableA
WHERE imageURL NOT IN (SELECT imageURL FROM MyTableB)
Mohou existovat rychlejší způsoby, jak to udělat, ale má to zásluhu na stručnosti.
SELECT *
FROM MyTableA
WHERE imageURL NOT IN (SELECT imageURL FROM MyTableB)
Mohou existovat rychlejší způsoby, jak to udělat, ale má to zásluhu na stručnosti.