SQL SERVER 2012 Chapter Fourth connecting JOIN statements early syntax structure & Union Union

Source: Internet
Author: User

1/early grammatical structure of the internal connection INNER join

SELECT * from Person.person JOIN humanresources.employee on Person.Person.ID = HumanResources.Employee.ID

Equivalent to an earlier version of the old

SELECT * from Person.person,humanresources.employee WHERE Person.Person.ID = HumanResources.Employee.ID

2/early syntax structure for external connections

SELECT * from Sales left JOIN Product on sales.id = product.id

Equivalent to

SELECT * from Sales,product WHERE sales.id *= product.id

3/early grammatical structure of cross-joins

SELECT * from vendors cross JOIN Address

Equivalent to

SELECT * from Vendors,address

Union Union

1, the SELECT list has the same number of columns.
2. The returned result set header is obtained from the first query.
3. The type of the corresponding column must be implicitly convertible. Parts that are out of length are ignored.
4. The Union default return option is distinct, not all. Use UNION All if you want it all.

SQL SERVER 2012 Chapter Fourth connecting JOIN statements early syntax structure & Union Union

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.