SQL Collation conflict when comparing to a column in a temp table

后端 未结 4 1136
遇见更好的自我
遇见更好的自我 2020-12-31 10:42

I have a SQL query that compares a value in the database to a constant:

SELECT * FROM my_table
INNER JOIN #TempTable tem
    ON my_table.id = temp.id
    AND         


        
4条回答
  •  悲哀的现实
    2020-12-31 11:15

    The problem is the temp table. It uses the collation of the tempdb.

    You could create a table in your actual db and not a temp table and then they would have the same collation. Or specify collation upon creating temp table.

提交回复
热议问题