简体   繁体   中英

LEFT OUTER JOIN is expressed as just LEFT JOIN in MySql syntax?

Is LEFT OUTER JOIN expressed as just LEFT JOIN in MySQL syntax? Or are LEFT OUTER JOIN and LEFT JOIN different things in MySQL?

Basically they are the same.

LEFT and RIGHT are outer type join. The keyword OUTER is optional, and what this means in this case is that whether you specify it or not makes no difference.

Additional Information,

At the top level there are mainly 3 types of joins:

  • INNER
  • OUTER ( LEFT , RIGHT )
  • CROSS

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM