当你的sql server数据表中出现数据完全相同的两行时,你再也无法修改或上次任何其中的一行数据,解决方法很多

下面是一个很巧妙的解决方法,记录下来 并分享

select distinct * into #temp from DictZoon

truncate table DictZoon

insert DictZoon select * from #temp

drop table #temp

相关文章:

  • 2021-07-11
  • 2022-03-10
  • 2021-12-21
  • 2022-12-23
  • 2021-05-06
  • 2021-06-29
  • 2021-06-14
  • 2022-12-23
猜你喜欢
  • 2022-03-02
  • 2021-09-30
  • 2021-11-13
  • 2022-01-24
  • 2022-12-23
  • 2022-01-21
  • 2021-08-09
相关资源
相似解决方案