I have this query and I need to be sort by the Word Name and grouped by the WordID.Before this is what they had and it never did that. WordID WordName-------- ----------2 22 Two3 33 Three190 THEATER190 THEATRE192 SPC192 SPCL192 SPEC192 SPECIALSo when I go into the query and Sort by WordName I get:WordID WordName-------- ----------2 23 3190 THEATER190 THEATRE3 Three2 Two192 SPC192 SPCL192 SPEC192 SPECIALThis is my query:SELECTWordEquivId,WordEquivalent FROM ListWordEquivalents WHERE EXISTS (SELECT Null FROM ListWordEquivalents B WHERE B.WordEquivId=ListWordEquivalents.WordEquivId GROUP BY B.WordEquivId, B.WordEquivalent) ORDER BY WordEquivId