SQL table join

Source: Internet
Author: User

Select * From xxaa A, xxbb B where a. ID (+) = B. IDD; -- right join, based on table B, matching all outputs in Table B
Select * From xxaa A, xxbb B where. id = B. <Div (+); -- left join. Table A is used as the base table. All outputs matching table A are equivalent to left join and left Outer Join.
Select * From xxaa A, xxbb B where a. ID = B. IDD; -- = join a, B tables are matched before output
Select * From xxaa a left join xxbb B on (A. ID = B. IDD); -- left inner join
Select * From xxaa a right join xxbb B on (A. ID = B. IDD); -- right inner join
Select * From xxaa a full join xxbb B on (A. ID = B. IDD); -- completely join -- the Union of table A and Table B
Select * From xxaa a inner join xxbb B on (A. ID = B. IDD); -- Inner join -- intersection of table A and Table B
Select * From xxaa a left Outer Join xxbb B on (A. ID = B. IDD); -- left Outer Join
Select * From xxaa a right Outer Join xxbb B on (A. ID = B. IDD); -- right Outer Join
Select * From xxaa a full outer join xxbb B on (A. ID = B. IDD); -- completely outer
Select * From xxaa a join xxbb B on (A. ID = B. IDD); -- equivalent to = join

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.