why did this sql statement always fail in oracle?# Database - 数据库
e*r
1 楼
I tried to find duplicate records from a table of 30,000,000 records:
select count(*), link, id from table group by link, id having count(*) > 1;
It always died. any suggestions ?
thanks
select count(*), link, id from table group by link, id having count(*) > 1;
It always died. any suggestions ?
thanks