数据库
首页 > 数据库> > Cannot resolve the collation conflict between “SQL_Latin1_General_CP1_CI_AS“ and “Chinese_PRC_CI_AS“

Cannot resolve the collation conflict between “SQL_Latin1_General_CP1_CI_AS“ and “Chinese_PRC_CI_AS“

作者:互联网

这个问题:
是sql server 服务器的排序规则 (SQL_Latin1_General_CP1_CI_AS ) 与数据库的排序规则(Chinese_PRC_CI_AS)不同导致的吧。

Solution :
在创建临时表时在相应的字段定义加上Collate Database_Default ,问题就解决了。

标签:CI,resolve,Latin1,Chinese,PRC,General,SQL
来源: https://blog.csdn.net/yangfang7186/article/details/113308294