wallaceoc80
Programmer
I have a table that is a relation table that is used in resolving a many-to-many relationship.
The table Group_App has columns (GroupID(pk), AppID(pk))
It resolves the relation ship between:
Group(GroupID(pk), GroupName)
and
Application(AppID(pk), AppName)
What I want to do is run a query that will fill the Group_App table with all the Applications from the Application table and for each AppID will have GroupID of 4.
So for example the Group_App table will have the following column pairings:
GroupID AppID
4 1
4 2
4 3
...
Can anybody tell me is it possible to write a query that will do this?
Thanks for the help!
Wallace
The table Group_App has columns (GroupID(pk), AppID(pk))
It resolves the relation ship between:
Group(GroupID(pk), GroupName)
and
Application(AppID(pk), AppName)
What I want to do is run a query that will fill the Group_App table with all the Applications from the Application table and for each AppID will have GroupID of 4.
So for example the Group_App table will have the following column pairings:
GroupID AppID
4 1
4 2
4 3
...
Can anybody tell me is it possible to write a query that will do this?
Thanks for the help!
Wallace