|
Question : MS Access query Find case sensitive matching records.
|
|
MS Access 2003 Query. I am using a union query to find matching records in a common text field in two tables. It is important that the matching records are exact in terms of the upper and lower characters and do not just in spelling. What criteria do I enter for this.
|
|
Answer : MS Access query Find case sensitive matching records.
|
|
try this
select ... from ... where strcomp([field1],[field2],0) = 0
|
|
|