delete from @t where id not in(select id from(select address,min(id) id from @t group by address) t2) |
消除重复数据
最新推荐文章于 2022-09-11 10:12:24 发布
delete from @t where id not in(select id from(select address,min(id) id from @t group by address) t2) |