原本不复杂,一条sql语句就可以完成。思路是先根据列分组,找出分组后数据都于一条的,然后从中删除除了行id最小的其他数据。Oracle中即时字段中没有能表示行id的,每行都自带一个rowid,sql语句:
select * from vitae a
where (a.peopleId,a.seq) in (select peopleId,seq from vitae group by peopleId,seq having count(*) > 1)
and rowid not in (select min(rowid) from vitae group by peopleId,seq having count(*)>1)
但是firebird中没有自带的行id,那就用个临时表,增加一个自增的id字段,然后把其他所有数据拷贝到临时表中。但是firebird临时表用法也是比较奇葩,也没有像mysql中那样的 auto increament的功能,只能用个generator在弄个trigger,来模拟auto increasement。资料又少,用firebird有点坑,sql脚本如下:
-- 存储过程用于删除刷卡信息表中的重复数据,然后把以前索引改为唯一性索引
-- 创建临时表,增加行id,用于删除重复数据
create global temporary table temp_door_swipe_table (
id integer not null,
device_id varchar(50),
card_id varchar(20),
user_id varchar(50),
io_fg smallint,
swipe_time timestamp,