Skip to content

Instantly share code, notes, and snippets.

@AndreasLazar
Created February 1, 2012 08:56
Show Gist options
  • Save AndreasLazar/1716031 to your computer and use it in GitHub Desktop.
Save AndreasLazar/1716031 to your computer and use it in GitHub Desktop.
Join nvarchar fields with different collation
select sone_field collate SQL_Latin1_General_CP1_CI_AS
from table_1
inner join table_2
on (table_1.field collate SQL_Latin1_General_CP1_CI_AS = table_2.field)
where whatever = whatever
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment