I have a table which includes 30 records, and a smaller table has 10 records, both tables have the same schema. All I want to do is to return a table, whose records are in the big table, but not in the small table. The solution I found is to use Except
operator. However, when I run the query, it took me about 30 mins. so I am just wondering that if Except
is computational expensive and it took a lot of resources?
Is there any functions can replace Except
? Thanks for any help !