sqlite 的去重

前端之家收集整理的这篇文章主要介绍了sqlite 的去重前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1) 找到重复的记录,归类到一个新表里面 max(id) 是想要删除的record

create table ttt as select gallery_url,max(id) as theid from gallery group by gallery_url having count(*) >=2

 

2) 删除

delete from gallery where id in ( select theid from ttt)

猜你在找的Sqlite相关文章