Oracle去重,删除重复记录

create table my_table_back as select distinct * from my_table;
drop table my_table;
alter table my_table_back rename to my_table;

posted @ 2020-12-04 12:15  好兵帥克  阅读(242)  评论(0编辑  收藏  举报