Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

GROUP BY inhibiting case-sensitivity

Status
Not open for further replies.

raa44634

Technical User
Dec 13, 2001
34
0
0
US
I need to link two tables where case sensivity is essential. The query executes properly using the following SQL:

SELECT StrComp(tblCode!code,tblCodeRevenue!RevenueCode,0) AS Expr1, tblCode.code, tblCodeRevenue.RevenueAmt
FROM tblCode LEFT JOIN tblCodeRevenue ON tblCode.code = tblCodeRevenue.RevenueCode
WHERE (((StrComp([tblCode]!
Code:
,[tblCodeRevenue]![RevenueCode],0))=0))

However, when I enter GROUP BY case-sensitivity fails.  

Does anyone know how to maintain case-sensitivity when using GROUP BY?

Thanks!
- tony -
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top