Quantcast
Channel: Monir's Blog
Viewing all articles
Browse latest Browse all 54

Cannot resolve the collation conflict between “Latin1_General_CS_AS” and “SQL_Latin1_General_CP1_CI_AS” in the equal to operation.

$
0
0

If this error happens in join, use this solution:

 

SELECT *
FROM Table1
LEFT OUTER JOIN Table2 ON Table2.ID = Table1.ID collate SQL_Latin1_General_CP1_CI_AS


Viewing all articles
Browse latest Browse all 54

Trending Articles