I have a query that checks for duplicate records on 2 fields. the issue I am having is that the data unfortunately is case sensitive. So M != m but the query is case insensitive. Is there a way to make my query case sensitive so I can cancel out the False positives from the query?
here is the quey if that helps
any help is appreciated
CG
here is the quey if that helps
Code:
SELECT tblPreReleaseData.From_Conn, tblPreReleaseData.From_term, tblPreReleaseData.Serial_number, tblPreReleaseData.Drawing_Number, tblPreReleaseData.Wire_number, tblPreReleaseData.Revision FROM tblPreReleaseData WHERE (((tblPreReleaseData.From_Conn) In (SELECT [From_Conn] FROM [tblPreReleaseData] As Tmp GROUP BY [From_Conn],[From_term] HAVING Count(*)>1 And [From_term] = [tblPreReleaseData].[From_term]))) ORDER BY tblPreReleaseData.From_Conn, tblPreReleaseData.From_term;
CG
Comment