I'm having a same data in 2 different table columns. When I comparing it returns False
.
select (case when 'Gurgaon / Delhi – NCR' = 'Gurgaon / Delhi - NCR' then true else false end)
But when copy and compare the same column text it returns True
select (case when 'Gurgaon / Delhi – NCR' = 'Gurgaon / Delhi – NCR' then true else false end)
How those word differs and how can I find and resolve this?
UPDATE
In table one column stored as \96
and I changed to -
. Is that causing the problem?