SQL deletes duplicate rows (ALL or DISTINCT)

Source: Internet
Author: User

The "ALL" or "DISTINCT" option is used in the SELECT statement for deleting duplicate rows to display ALL rows that meet the conditions in the table or delete duplicate data rows in the table. The default value is "ALL. When the DISTINCT option is used, only one row is retained for all duplicate data rows in the result set returned by the SELECT statement.

SQL deletes duplicate rows (all or distinct)
/*
The "all" or "distinct" option is used in the select statement for deleting duplicate rows to display all rows that meet the conditions in the table or delete duplicate data rows in the table. The default value is "all. When the distinct option is used, only one row is retained for all duplicate data rows in the result set returned by the select statement.

We can also use it to remove duplicate data.

Merge two tables to remove duplicate data (mainly Table 2 data). We will get the following table:

A B

A 1

B 0

C 0

D 0

E 4

Select a, B from table 1 where a not in (select a from table 2)

Union

Select a, B from table 2

// Distinct syntax

Select distinct "column name" from "table name"

// SQL union all syntax

Select column_name (s) from table_name1 union all select column_name (s) from table_name2

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.