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架构简单,又有Json计算能力,有时会承担Json文件/RES...
使用Python操作内置数据库SQLite以及MySQL数据库。
破解微信数据库密码,用python导出微信聊天记录
(Unity)SQLite 是一个软件库,实现了自给自足的、无服务器...
安卓开发,利用SQLite实现登陆注册功能