tote_win is only present where there is a valid tote_win return, so it only applies to winners of races where the Tote operates betting pools, and none of the winners in the last month has a NULL value (with the exception of one Arabian race that is in the database in the last month, for which there is no tote betting).
Try the following query on this month's racing
>select tote_win from historic_runners join historic_races using (race_id) where meeting_date > "2016-07-01" and finish_position = 1;
It should return the same number of results (with only the one NULL Arabian race) as the number of races that have occurred in the same period, eg:
>select tote_win from historic_runners join historic_races using (race_id) where meeting_date > "2016-07-01" and finish_position = 1;