edwardturner
Technical User
Hi,
I've need to do a comparison between 2 fields in two 2 tables and identify the differences, I am using this SQL but it returns nothing:
select
field1+field2
from
table1
where field1+field2 NOT IN
(select field3+field4
from table2)
All the fields are nvarchar(100). There is definately differences but I do not understand why this statement does not return them, any ideaS?
I've need to do a comparison between 2 fields in two 2 tables and identify the differences, I am using this SQL but it returns nothing:
select
field1+field2
from
table1
where field1+field2 NOT IN
(select field3+field4
from table2)
All the fields are nvarchar(100). There is definately differences but I do not understand why this statement does not return them, any ideaS?