nickee
02-01-2004, 03:56 PM
I have a access database with 2 identical tables.
The first called "prod" and the other called "prod_mirror" I use the field key as primary key. I want to select data changes between the tables and I use this query:
SELECT prod.* FROM prod, prod_mirror WHERE prod.key = prod_mirror.key AND prod.name <> prod_mirror.name
It works great but its not case sensitive, fo example if I just change a "b" to a "B" it does not see that as a differens.
Does anyone have any ideas how to get this work? I have heard somthing about "Option Compare Binary"
The first called "prod" and the other called "prod_mirror" I use the field key as primary key. I want to select data changes between the tables and I use this query:
SELECT prod.* FROM prod, prod_mirror WHERE prod.key = prod_mirror.key AND prod.name <> prod_mirror.name
It works great but its not case sensitive, fo example if I just change a "b" to a "B" it does not see that as a differens.
Does anyone have any ideas how to get this work? I have heard somthing about "Option Compare Binary"