mysql刪除多字段重複的數據

create table tmp as select min(id) as col1 from blur_article group by title; delete from blur_article where id not in (select col1 from tmp); drop table tmp; create table tmp as select min(id) as col1
相關文章
相關標籤/搜索