SQL statement Query Results Merge UNION ALL usage _ database Tips

Source: Internet
Author: User

--Merge duplicate rows select * FROM Aunion SELECT * from b--do not merge duplicate rows select * FROM Aunion allselect * from B Sort by a field-merge duplicate row select *from (sele  CT * FROM Aunion select * to B) as Torder by field name--Do not merge duplicate rows select *from (SELECT * FROM Aunion allselect * from B) as Torder By field name//sql Server version SELECT * FROM (select top 2 id,adddate,title,url from barticle where classid=1 order by adddate Desc) Aunion Allselect * FROM (select top 2 id,adddate,title,url from barticle where classid=2 order by adddate Desc) bunion All SELECT * FROM (select top 2 id,adddate,title,url from barticle where classid=3 order by adddate Desc) cunion Allselect * F  Rom (select top 2 id,adddate,title,url from barticle where classid=4 order by adddate Desc) d//mysql Edition select * FROM (SELECT Id,adddate,title,url from Barticle where classid=1 order by adddate desc-limit 0,2) aunion Allselect * FROM (select Id,ad Ddate,title,url from Barticle where classid=2 order by adddate desc-limit 0,2) bunion Allselect * FROM (select Id,adddate, Title,url from Barticlewhere classid=3 ORDER BY adddate desc limit 0,2) cunion Allselect * FROM (select Id,adddate,title,url from Barticle where classid=4 ORDER BY adddate desc limit 0,2) D

SQL statement Query Results Merge UNION ALL usage _ database Tips

Related Article

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.