My bad, that should be Inner Join. Must have got deleted with the copy/paste over.
Any ideas whats going wrong? It might be something with the way I'm joining tables, if helps any this is the actual query without psuedonames and the relevant table data types.
SQLQuery = "Select FantasyTeamAssignment.Username, SUM(PlayerUpdate.CurrentScore) FROM PlayerUpdate INNER JOIN FantasyTeamAssignment ON FantasyTeamAssignment.PlayerID = PlayerUpdate.PlayerID JOIN LeagueSub ON FantasyTeamAssignment.LeagueID = LeagueSub.LeagueID WHERE FantasyTeamAssignment.LeagueID = " & Request.QueryString("titleleague") & " group by FantasyTeamAssignment.Username"
Tables
FantasyTeamAssignment - LeagueID (int), Username (char(15)), PlayerID (int)
LeagueSub - LeagueID (int), Username (nchar(15)), Active (nchar(10))
PlayerUpdate - PlayerID (int), Value (int), CurrentScore(int)