你能告诉我,我应该如何构造 sql 查询来删除我的数据库中的重复项?
请看结构:
---------------------------------------
| id | search_text | search_text_link |
---------------------------------------
| 1 | qwerty | qwerty.html |
| 2 | qwerty123 | qwerty123.html |
| 3 | qwerty456 | qwerty456.html |
| 4 | qwerty | qwerty000.html |
---------------------------------------
我想通过search_text行删除所有重复项。非常感谢您的帮助!