Join column with different collation issue - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T20:09:00Zhttp://stackoverflow.com/feeds/question/845321http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/845321/join-column-with-different-collation-issue0Join column with different collation issueGeorge22009-05-10T13:17:12Z2009-11-09T08:00:10Z
<p>Hello everyone,</p>
<p>I am using SQL Server 2005. I have two tables, and they are using different collations. It is not allowed to concatenate columns from tables with different collations, for example the following SQL is not allowed,</p>
<pre><code>select table1column1 + table2column2 from ...
</code></pre>
<p>My question is, why concatenation of two columns from different collations is not allowed from database engine design perspective? I do not know why collation will impact results, the result is just concatenating strings -- should be simple enough and not dependent on collation...</p>
<p>thanks in advance,
George</p>
http://stackoverflow.com/questions/845321/join-column-with-different-collation-issue/845387#8453870Answer by u07ch for Join column with different collation issueu07ch2009-05-10T14:02:13Z2009-05-10T14:02:13Z<p>OK,</p>
<p>I think the answer is simply that designing a system to work with unicode is a lot harder than the ascii character set. You have to worry about more than the letters; if you had arabic and french then how to you do string a + string b as they read in differant directions (not kana compatible i think is the term)? </p>
<p>You have to add a new work to collation - coercibility - my understanding is that coercibility is supposed to handle the compatibility of strings in different collations. i.e. it should allow a database engine by having rules such that that Latin1_CI_AS should really be compatible with Latin1_CI_AI under certain circumstances. </p>
<p>If you have a copy of SQL 99 Spec; read up on the coercibility of collations which defines how strings can be manipulated between collations. MS have tried to define it here on <a href="http://msdn.microsoft.com/en-us/library/bb330962.aspx" rel="nofollow">MSDN</a> though i am not sure they have gone far enough compared to the standards; maybe sql2010 will be better... As far as my reading on the subject has gone; it still holds on SQL03 standard too - i guess for forward computability. The <a href="http://books.google.com/books?id=q7sJwvqhDG4C&pg=PA707&lpg=PA707&dq=collation%2Bcoercibility%2Bsql%2B99&source=bl&ots=4gfH6J6R3s&sig=al49I9HofwrGYwavDDiHUWKVIiM&hl=en&ei=J9wGSr39DsWNjAfbyrCVCw&sa=X&oi=book%5Fresult&ct=result&resnum=1" rel="nofollow">google books entry</a> for SQL 99 doesnt have the pages on coercibility and i cant find anything bettr than the MSDN explanation.</p>