Join column with different collation issue - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T20:09:00Z http://stackoverflow.com/feeds/question/845321 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/845321/join-column-with-different-collation-issue 0 Join column with different collation issue George2 2009-05-10T13:17:12Z 2009-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#845387 0 Answer by u07ch for Join column with different collation issue u07ch 2009-05-10T14:02:13Z 2009-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&amp;pg=PA707&amp;lpg=PA707&amp;dq=collation%2Bcoercibility%2Bsql%2B99&amp;source=bl&amp;ots=4gfH6J6R3s&amp;sig=al49I9HofwrGYwavDDiHUWKVIiM&amp;hl=en&amp;ei=J9wGSr39DsWNjAfbyrCVCw&amp;sa=X&amp;oi=book%5Fresult&amp;ct=result&amp;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>