Hi,
I have a query that finds any duplicates caused by spacing.
This is my query
Select a.column1, b column1
from table1 as a, table1 as b
where replace (a.column1,' ','') = replace (b.column1,' ','')
and a.column1 <> b.column1
this is my result
column1 column1_1
A+ A +
A + A+
B+ B +
B...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.