I ahve a column that is labeled Subdicipline. Inside of this column I have individual subs for example Electo-Optical, Materials, and Radar. Know i am trying to build a query that will return the results when all three are entered into a single field. Here is the catch they can be in random order.
SELECT CombinedElements.FullName, CombinedElements.Subdiscipline, CombinedElements.DataType, CombinedElements.Associations, CombinedElements.Parent
FROM CombinedElements
WHERE (((CombinedElements.Subdiscipline)="Materials, Electro-Optical, Radar"));
This is my code as it stands know, but it will only return the values when they are in the same order as the query. Any help.
SELECT CombinedElements.FullName, CombinedElements.Subdiscipline, CombinedElements.DataType, CombinedElements.Associations, CombinedElements.Parent
FROM CombinedElements
WHERE (((CombinedElements.Subdiscipline)="Materials, Electro-Optical, Radar"));
This is my code as it stands know, but it will only return the values when they are in the same order as the query. Any help.