Mysql deletes a duplicate record of a field in a table _mysql

Source: Internet
Author: User

For example, table: event (id int () auto_increment primary KEY,
Sid Int (a) NOT NULL,
Detail text)

I would like to delete the SID duplicate record in the table event, is there such an SQL statement? or by other means?

Copy Code code as follows:

Delete from event as E
Where ID!= (select min (id) from event where Sid=e.sid);

Or
Copy Code code as follows:

Delete from event
Where Sid not in (select SID, Min (id) as mid to Event Group by SID)

It should be useful code.
Copy Code code as follows:

Alter Ignore table event add unique index idu_sid (SID);
ALTER TABLE event DROP INDEX idu_sid;

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.