SQL query result merging unionall _ database skills

Source: Internet
Author: User
SQL statement query result merging unionall usage _ database skills. For more information, see.

SQL statement query results merge union all usage _ database skills. For more information, see.

The Code is as follows:
-- Merge duplicate rows
Select * from
Union
Select * from B


-- Duplicate rows are not merged.
Select * from
Union all
Select * from B


Sort by a Field
-- Merge duplicate rows
Select *
From (
Select * from
Union
Select * from B) AS T
Order by field name

-- Duplicate rows are not merged.
Select *
From (
Select * from
Union all
Select * from B) AS T
Order by field name

// SQL server
Select * From (
Select top 2 id, adddate, title, url from bArticle where ClassId = 1 order by adddate desc)
Union All
Select * From (
Select top 2 id, adddate, title, url from bArticle where ClassId = 2 order by adddate desc) B
Union All
Select * From (
Select top 2 id, adddate, title, url from bArticle where ClassId = 3 order by adddate desc) C
Union All
Select * From (
Select top 2 id, adddate, title, url from bArticle where ClassId = 4 order by adddate desc) D


// Mysql
Select * From (
Select id, adddate, title, url from bArticle where ClassId = 1 order by adddate desc limit 0, 2)
Union All
Select * From (
Select id, adddate, title, url from bArticle where ClassId = 2 order by adddate desc limit 0, 2) B
Union All
Select * From (
Select id, adddate, title, url from bArticle where ClassId = 3 order by adddate desc limit 0, 2) C
Union All
Select * From (
Select id, adddate, title, url from bArticle where ClassId = 4 order by adddate desc limit 0, 2) D

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.