I have two tables linked through a many-to-any relationship. Table one contains all voters with an ID, table two contains all elections with an ID, and table three links both tables using their IDs.
Not all voters voted in all elections. I would like to query the many-to-many relationship to find the elections for each voter that they did not vote in. I'm using MySQL.