G
Guest
Hi,
This is a bit weird - I can get the expression working in Access but as soon
as I try and sort by the totalPointScore (using query design) - Access
complains!
I have THE SQL Expression:
SELECT tblPlayers.playerID, tblPlayers.surname, tblPlayers.forename,
tblPlayers.position, tblPlayers.Value, tblClubs.clubName,
tblPlayerScores.playerScore, (SELECT SUM(t1.playerScore) FROM tblPlayerScores
AS t1 WHERE t1.playerID = tblPlayers.playerID AND t1.weekID <3) AS
totalPointScore
FROM tblAdminSetup, (tblClubs INNER JOIN tblPlayers ON tblClubs.clubID =
tblPlayers.clubID) INNER JOIN tblPlayerScores ON tblPlayers.playerID =
tblPlayerScores.playerID
WHERE (((tblPlayerScores.weekID)<=[tblAdminSetup].[tblCurrentWeek]))
;
I would like to sort the totalPointScore, if possible. Any advice is much
appreciated!!!
Thanks in advance,
David Apthorpe
This is a bit weird - I can get the expression working in Access but as soon
as I try and sort by the totalPointScore (using query design) - Access
complains!
I have THE SQL Expression:
SELECT tblPlayers.playerID, tblPlayers.surname, tblPlayers.forename,
tblPlayers.position, tblPlayers.Value, tblClubs.clubName,
tblPlayerScores.playerScore, (SELECT SUM(t1.playerScore) FROM tblPlayerScores
AS t1 WHERE t1.playerID = tblPlayers.playerID AND t1.weekID <3) AS
totalPointScore
FROM tblAdminSetup, (tblClubs INNER JOIN tblPlayers ON tblClubs.clubID =
tblPlayers.clubID) INNER JOIN tblPlayerScores ON tblPlayers.playerID =
tblPlayerScores.playerID
WHERE (((tblPlayerScores.weekID)<=[tblAdminSetup].[tblCurrentWeek]))
;
I would like to sort the totalPointScore, if possible. Any advice is much
appreciated!!!
Thanks in advance,
David Apthorpe