Some supporting answers are not a complete question to your question, but may be useful:
If you try:
SELECT 1 WHERE N'fußball' = N'fussball'
you get "1" - when using the "N" character to denote Unicode, two lines are considered the same - why in this case I do not know yet.
To find the default collation for the server, use
SELECT SERVERPROPERTY('Collation')
To find the mapping of a given column in the database, use this query:
SELECT name 'Column Name', OBJECT_NAME(object_id) 'Table Name', collation_name FROM sys.columns WHERE object_ID = object_ID('your-table-name') AND name = 'your-column-name'
source share