When I run this query it returns 6,338 total rows.
SELECT updated.playerId
FROM updated WHERE updated.updated = 0;
However, when I run this query it only inserts 2,771 total rows, when it should insert all 6,338.
INSERT IGNORE INTO playerold (playerID)
SELECT updated.playerId
FROM updated WHERE updated.updated = 0;
Am I missing something here?