此处写的删除数据库中的重复数据的sql语句,根据rowid去删除 delete * from table1 a where a.rowid!=(select min(b.rowid) from table1 b where a.cd=b.cd and ..... )