D
dennist685
Here is the query
SELECT KSGroups.KSGroup, KSGroups.ID
FROM KSGroups INNER JOIN (KeywordSets INNER JOIN KSGroupKSAssignments ON
KeywordSets.ID = KSGroupKSAssignments.KeywordSetID) ON KSGroups.ID =
KSGroupKSAssignments.KSGroupID
WHERE (((KSGroups.ID)=[?]) AND ((KeywordSets.ID)=[?]))
ORDER BY KSGroups.KSGroup
It seems to me access should be asking first for the ksgroups.id and then
keywordsets.id.
If not, how should the query look so that it asks for both parameters.
thanks,
dennist685
SELECT KSGroups.KSGroup, KSGroups.ID
FROM KSGroups INNER JOIN (KeywordSets INNER JOIN KSGroupKSAssignments ON
KeywordSets.ID = KSGroupKSAssignments.KeywordSetID) ON KSGroups.ID =
KSGroupKSAssignments.KSGroupID
WHERE (((KSGroups.ID)=[?]) AND ((KeywordSets.ID)=[?]))
ORDER BY KSGroups.KSGroup
It seems to me access should be asking first for the ksgroups.id and then
keywordsets.id.
If not, how should the query look so that it asks for both parameters.
thanks,
dennist685