select a.artno, a.name
from Art a
inner join store s on a.Artno <> s.Artno`
Running this query took me more than 1 min producing more 899K rows while was supposed to bring out 7.9K results.
select artno
from art
except
(select artno from store)
This line of code provides me with 7.9K rows which is true for me.
The first codes seems to be working code but takes a hack of a time and produces a large result set. Wondering why?