SyntaxFix
Write A Post
Hire A Developer
Questions
You can see collation settings for each table like the following code:
SELECT t.name TableName, c.name ColumnName, collation_name FROM sys.columns c INNER JOIN sys.tables t on c.object_id = t.object_id where t.name = 'name of table';