Hello,
I have two tables Activity and Action. One or more actions can be performed for an activity. And the relationships between Activity and Action is given in a third table called Activity Action.
How do I retrieve a result set that tells me what action is applicable for each activity using an sql statement? Here's the table structure
Activity Table -ActivityId(PK), ActivityText
Action Table - ActionId(PK), ActionText
ActivityAction -ActivityActionId(PK), ActivityID, ActionID
I want a resultant table in the format
Activity, Applicable Action
(the Activity column should show ActivityText and Applicable Action should show ActionText)
could you please guide me?
Thank you.