I am very very new to Access, and am trying to figure out the best way to create my database. I have experience in SQL, and find that much easier than the Access UI. I have two tables (Details and Manager) and am trying to create a foreign key reference so that these two can be together. For example, the Details Table looks like this:
ProductID ManagerName OfficeNum OfficeAddress
234 Sally Smith 56 123 Fake St
789 Bob McBob 02 987 Cool Rd
*I know this is bad db formating; the data is being pulled in from an external reporting system and is easier to keep in this format.*
I want my manager table to take the ProductID and ManagerName from the details table, like so:
ManagerID ManagerName ProductID GroupName
1 Sally Smith 234 Paper
5 Bob McBob 789 Pens
I'm having big problems in trying to figure out how to join these (I would prefer to do it SQL). Does anyone know how to quickly do this? Any help is greatly appreciated!