I'm trying to show the text associated with the ID field.
I have three tables
playerinformation
sportsidentification
sportspositions
the sports Identification table has:
sports_ID
Sports
Sports position table has
Position_ID
Sports_ID
Positions
I'm storing the sport_ID field (numeric)
I want to show the sport in the report and query.
I'm not sure how to reference this
The SQL code is below.
SELECT tbl_playerInformation.Fname, tbl_playerInformation.Lname, tbl_playerInformation.sport1, tbl_SportPositions.Positions
FROM (tbl_sportIdentification INNER JOIN tbl_SportPositions ON tbl_sportIdentification.Sports_ID = tbl_SportPositions.Sport_ID) INNER JOIN tbl_playerInformation ON tbl_sportIdentification.Sports_ID = tbl_playerInformation.sport1;
I have three tables
playerinformation
sportsidentification
sportspositions
the sports Identification table has:
sports_ID
Sports
Sports position table has
Position_ID
Sports_ID
Positions
I'm storing the sport_ID field (numeric)
I want to show the sport in the report and query.
I'm not sure how to reference this
The SQL code is below.
SELECT tbl_playerInformation.Fname, tbl_playerInformation.Lname, tbl_playerInformation.sport1, tbl_SportPositions.Positions
FROM (tbl_sportIdentification INNER JOIN tbl_SportPositions ON tbl_sportIdentification.Sports_ID = tbl_SportPositions.Sport_ID) INNER JOIN tbl_playerInformation ON tbl_sportIdentification.Sports_ID = tbl_playerInformation.sport1;