删除全字段重复记录

delete from table where id not in (select T.id from (select max(id) AS id from table group by a,b,c) AS T);

相关文章:

  • 2022-12-23
  • 2022-01-16
  • 2022-12-23
  • 2021-08-15
  • 2021-08-10
  • 2022-01-03
猜你喜欢
  • 2021-09-27
  • 2021-10-23
  • 2021-08-22
  • 2021-05-19
  • 2021-04-26
  • 2021-07-30
  • 2021-06-07
相关资源
相似解决方案