豆腐腦
2012年5月30日 星期三
找出/刪除MySQL資料表中重複的資料
以電子郵件傳送這篇文章
BlogThis!
分享至 X
分享至 Facebook
分享到 Pinterest
範例:找出 my_table 資料表中 name 重複的資料
select
name
,count(*) from
my_table
group by
name
having count(*) > 1;
範例:刪除 my_table 資料表中 name, id 重複的資料
alter ignore table
my_table
add unique index(
name
,
id
);
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言