我使用下面的查询来删除重复项。但它仍然显示重复项。你能告诉我为什么吗?
select DISTINCT a.Company
from [Legacy].[dbo].[Attorney] as a
更新:以下一个也无法正常工作。您能告诉我原因吗?
select DISTINCT ltrim(rtrim(a.Company)) from [Legacy].[dbo].[Attorney] as a
更新2:现在,它显示3.我不知道为什么?
select DISTINCT ltrim(rtrim(a.Company)),convert(varbinary(100), a.Company) from [Legacy].[dbo].[Attorney] as a
答案 0 :(得分:5)