gamingmouse
Programmer
The "game_players" table contains poker data. Each "game_id" is repeated for as many players happened to be in that game, or hand.
If a player saw the flop, then the field "saw_flop_n" = 1; if not, it equals 0. I'm trying to get all game_id in which exactly two players saw the flop:
But when I run the query above, Access asks me to "Enter Parameter Value" for num_saw_flop. What is wrong with the query above?
Thanks,
gm
If a player saw the flop, then the field "saw_flop_n" = 1; if not, it equals 0. I'm trying to get all game_id in which exactly two players saw the flop:
Code:
SELECT Sum(saw_flop_n) AS [num_saw_flop], game_id
FROM game_players
WHERE num_saw_flop = 2
GROUP BY game_id;
But when I run the query above, Access asks me to "Enter Parameter Value" for num_saw_flop. What is wrong with the query above?
Thanks,
gm