Delete duplicate records in the database (delete only duplicate records)

Source: Internet
Author: User

Background:

Today, when I used a crawler to crawl data, I was accidentally suspended when I first crawled data. Later, I started again, but forgot to clear some junk data, as a result, many repeated records are generated in the wordlocation table.

The wordlocation table defines the following wordlocation (urlid, wordid, location), where (urlid, wordid) should be unique.

Requirements:

Remove redundant duplicate data from the wordlocation table

Solution:

Create a table wl_new with the same structure, and then execute the following statement

Insert into wl_new select * From wordlocationGroup by urlid, wordid

The last group by ensures the uniqueness of (urlid, wordid)

Delete all data in the wordlocation table, insert all data in wl_new to the wordlocation table, and delete wl_new.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.