daglugub37
Technical User
I am trying to learn how to design relational databases. I started a football statistice database in Access but decided it would be better to learn SQL server instead. I imported the few tables I populated in Access and now would like to figure out how to query.
Here is one table:
tblPlayers
fldPlayerID - int
fldFirst - nvarchar
fldLast - nvarchar
fldPosition - nvarchar
another table:
tblTeams
fldTeamID - int
fldName - nvarchar
last table:
tblRoster
fldRosterID - int
fldTeamID - int
fldPlayerID - int
fldSeason - int
fldStarter - bit(yes/no field)
2 main questions.
A: Did the relationships I establised in Access copy over or is it a whole different scheme in SQL.
B: How do I query for example the Name of all the Starters on the Dolphins in 2003???
Here is one table:
tblPlayers
fldPlayerID - int
fldFirst - nvarchar
fldLast - nvarchar
fldPosition - nvarchar
another table:
tblTeams
fldTeamID - int
fldName - nvarchar
last table:
tblRoster
fldRosterID - int
fldTeamID - int
fldPlayerID - int
fldSeason - int
fldStarter - bit(yes/no field)
2 main questions.
A: Did the relationships I establised in Access copy over or is it a whole different scheme in SQL.
B: How do I query for example the Name of all the Starters on the Dolphins in 2003???