pretzman21
New Member
- Joined
- Aug 7, 2018
- Messages
- 11
Hello,
I am trying to create a database for my bowling league. For starters, I intend on having a query prompt me to enter 3 games using the append query function as seen below. When I run the query, it does prompt me to enter the 3 games, and I am able to input them. However, when going back to the original table of Game, nothing has been entered into the columns of Game1, Game2, Game3. I do understand that I want to this be an append, not an update as I want new data to be input. I suspect that this is an issue with microsoft access, but I can't be certain. Access does not output any errors of any kind either which is not helpful. Below is the sql view that was created when I put together the items from the query design view. Also, this is Microsoft Access for office 365, but it states that its access 2007 with 2016 file format.
INSERT INTO Game ( Game1, Game2, Game3, GameID )
SELECT Game.Game1, Game.Game2, Game.Game3, Game.GameID
FROM Game
WHERE (((Game.Game1)=[Enter game 1]) AND ((Game.Game2)=[Enter game 2]) AND ((Game.Game3)=[Enter game 3]));
My question is, how can I get this to work? Do I need to apply any particular Microsoft updates? Is there something I can do to the syntax of this query? Any advice would be appreciated.
I am trying to create a database for my bowling league. For starters, I intend on having a query prompt me to enter 3 games using the append query function as seen below. When I run the query, it does prompt me to enter the 3 games, and I am able to input them. However, when going back to the original table of Game, nothing has been entered into the columns of Game1, Game2, Game3. I do understand that I want to this be an append, not an update as I want new data to be input. I suspect that this is an issue with microsoft access, but I can't be certain. Access does not output any errors of any kind either which is not helpful. Below is the sql view that was created when I put together the items from the query design view. Also, this is Microsoft Access for office 365, but it states that its access 2007 with 2016 file format.
INSERT INTO Game ( Game1, Game2, Game3, GameID )
SELECT Game.Game1, Game.Game2, Game.Game3, Game.GameID
FROM Game
WHERE (((Game.Game1)=[Enter game 1]) AND ((Game.Game2)=[Enter game 2]) AND ((Game.Game3)=[Enter game 3]));
My question is, how can I get this to work? Do I need to apply any particular Microsoft updates? Is there something I can do to the syntax of this query? Any advice would be appreciated.