I am trying a self join that isn't quite coming off because it involves adding up a users game points and counting the nuber of times that user has played that game. I can get Count() or Sum() working OK but not together. I've tried various ways of bracketing them but nothing is coming off. Frustrating day today :~(
SELECT Sum(Points) AS SSP
FROM BigGame
WHERE BigGameOK = varOK AND UserName = 'varUser'
Can you help me out... thanks
Struth
"Its life Jim, but not as we know it."
SELECT Sum(Points) AS SSP
FROM BigGame
WHERE BigGameOK = varOK AND UserName = 'varUser'
Can you help me out... thanks
Struth
"Its life Jim, but not as we know it."