Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Post History

83%
+8 −0
Q&A Why would excluding records by creating a temporary table of their primary keys be faster than simply excluding by value?

Why would the second way be faster? Generally speaking, the first form will perform worse (as well as looking a lot worse) than the second. You are hitting an edge case where the opposite is true...

posted 3y ago by Jack Douglas‭

Answer
#1: Initial revision by user avatar Jack Douglas‭ · 2020-08-09T17:52:27Z (over 3 years ago)
> Why would the second way be faster?

Generally speaking, the first form will perform worse (as well as looking a lot worse) than the second. You are hitting an edge case where the opposite is true, because:

1. The `not in` in your first example is likely to be transformed into an anti-join (something like [this](https://dbfiddle.uk/?rdbms=mysql_8.0&fiddle=4436e351646efbb4a99708f09ef9904f)). Because you also have "…just a handful of records where a bit(1) column is set to 1…" that anti-join is likely to be fairly fast.

2. Bad stats or bad luck means that the optimizer is making a wrong choice when filtering. Perhaps it is choosing a full table scan in the second case, or failing to use a good index.

We'd need to know your actual plans/indexes/etc to be able to say more, as several people have mentioned in comments.