select * from table1 where ID not in (select ID from table2 )  

无法解决 equal to 操作中 "SQL_Latin1_General_CP1_CI_AS" 和 "Chinese_PRC_CI_AS" 之间的排序规则冲突。
--解决办法
select * from table1 where ID COLLATE Chinese_PRC_CI_AS not in (select ID from table2 )
  

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-30
  • 2021-08-11
  • 2022-12-23
  • 2022-02-04
猜你喜欢
  • 2021-06-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-25
相关资源
相似解决方案