sql去除重複資料 保留一條

2022-02-17 06:29:45 字數 657 閱讀 7072

去除重複資料 保留一條

delete from evaluation where id not in

(select max(id) from evaluation where convert(varchar(100),adddate, 23)='2014-04-08' group by content)

id     title                           content56

好評!相當不錯。 好評!真的好評。

7好評! 好評!

8好評!真的好評。 好評!真的好評。

9好評! 好評!

10 好評! 好評!

(select max(id) from evaluation where convert(varchar(100),adddate, 23)='2014-04-08' group by content)

id     title                           content58

好評!真的好評。 好評!真的好評。

10 好評! 好評!

SQL 刪除資料庫中重複資料 保留一條

檢視重覆記錄語句 說明 wp search history 資料庫表名 sh id 為標識列名 唯一 sh pageurl 為有重複資料的列名 select sh id from wp search history s1 where sh id not in select max sh id fro...

mysql刪除單列重複資料並保留一條

自己剛好有這種需求,又不是很熟悉sql果斷去查一下 mysql mysql刪除重覆記錄並且只保留一條.自己動手測試一下,順帶說一下mysql workbench,懶得去找xx破解的話還是可以的,感覺夠用了。create table ta test2 idnew table varchar 45 no...

SQL去除重複資料

sql中去除完全相同資料可以用distinct關鍵字,任意欄位去重可以用group by,以下面的資料表為例。idname score1小王 512小魏613小張 714小李515小王 51 1.存在兩條完全相同的紀錄,用關鍵字distinct就可以去掉 select distinct from t...