Tagged Questions
The anti-join tag has no wiki summary.
1
vote
3answers
510 views
Oracle Anti-Join Execution plan question
We have two tables like so:
Event
id
type
... a bunch of other columns
ProcessedEvent
event_id
process
There are indexes defined for
Event(id) (PK)
ProcessedEvent (event_id, ...
0
votes
1answer
171 views
Postgres ANTI-JOIN needs Table-Scan?
I need an ANTI-JOIN (not exists SELECT something from table.../ left join table WHERE table.id IS NULL) on the same table. Acutally I have an index to serve the not exists question, but the query ...
0
votes
4answers
135 views
Finding missing emails in SQL Server
I am trying to do something I've done a million times and it's not working, can anyone tell me why?
I have a table for people who sent in resumes, and it has their email address in it...
I want to ...