G
Guest
How do I turn the following query into a table? I've gone through the
documentation, tried several potential leads, to no avail?
What is this about? I want to make a table out of all KeywordSets assigned
to a KSGroup whose ID is 5. Five consists of persons. A keywordset can be
assigned to more than one group, for example Persons, Palestinians and
possibly others.
SELECT KeywordSets.KeywordSet, KeywordSets.ID
FROM KSGroups INNER JOIN (KeywordSets INNER JOIN KSGroupKSAssignments ON
KeywordSets.ID = KSGroupKSAssignments.KeywordSetID) ON KSGroups.ID =
KSGroupKSAssignments.KSGroupID
WHERE (((KSGroups.ID)=5))
ORDER BY KeywordSets.KeywordSet;
Thank you very much.
dennist685
documentation, tried several potential leads, to no avail?
What is this about? I want to make a table out of all KeywordSets assigned
to a KSGroup whose ID is 5. Five consists of persons. A keywordset can be
assigned to more than one group, for example Persons, Palestinians and
possibly others.
SELECT KeywordSets.KeywordSet, KeywordSets.ID
FROM KSGroups INNER JOIN (KeywordSets INNER JOIN KSGroupKSAssignments ON
KeywordSets.ID = KSGroupKSAssignments.KeywordSetID) ON KSGroups.ID =
KSGroupKSAssignments.KSGroupID
WHERE (((KSGroups.ID)=5))
ORDER BY KeywordSets.KeywordSet;
Thank you very much.
dennist685