【发布时间】:2020-11-23 15:02:53
【问题描述】:
我得到了几个关于这个错误的答案,但在我的情况下没有任何效果。我有一个简单的更新查询
update students set studentID ='001093' where studentID ='1578093'
当我尝试在我的 sql 数据库中更新时收到此排序规则错误:
Cannot resolve the collation conflict between
"SQL_Latin1_General_CP1_CI_AS" and "Latin1_General_CI_AI" in the equal
to operation.
我尝试了什么
update students set studentID COLLATE SQL_Latin1_General_CP1_CI_AS ='001093' where studentID ='1578093' COLLATE SQL_Latin1_General_CP1_CI_AS
请帮助解决这个问题..我知道我们有足够的重复项,但没有一个解决方案对我有用
【问题讨论】:
-
您的表是否有访问另一个表的触发器?它是否参与任何视图?
-
不是独立的表
标签: sql sql-server database collation