Hello:
In my slow query log i have an entry like this below, what I dont really
understand this Rows_examined: 439377
It is only calling two tables 'Selections (146857 rows)' and 'Games (73,260
rows)'. Toghether they dont even add up to 439377.
Query_time: 36 Lock_time: 0 Rows_sent: 0 Rows_examined: 439377
SELECT PlayerID, SelectionID, ContestID
FROM Selections
LEFT JOIN Games ON ( Selections.GameID = Games.GameID )
WHERE GameDate = '2004-11-23'
ORDER BY PlayerID
Can someone please help me out?