- MySQL 8 for Big Data
- Shabbir Challawala Jaydip Lakhatariya Chintan Mehta Kandarp Patel
- 122字
- 2021-08-20 10:06:13
SQL JOINS
Join is used to retrieve data from multiple tables. For example, if there are two tables, order and customer, and we want to retrieve data, it is possible using the JOIN clause.
The different types of JOIN are as follows:
- INNER JOIN: Returns only those records which have matching values in both tables.
- CROSS JOIN: Returns only those records which are have matching values in either the left or right table.
- LEFT JOIN: This will returns all records from the left table and only matching records from the right table.
- RIGHT JOIN: This will returns all records from the right table and only matching records from the left table.
The following figure illustrates the example that we looked at briefly:

推薦閱讀
- C++程序設計(第3版)
- 零基礎學Scratch少兒編程:小學課本中的Scratch創意編程
- .NET 3.5編程
- 第一行代碼 C語言(視頻講解版)
- Spring Security Essentials
- Red Hat Enterprise Linux Troubleshooting Guide
- Xcode 6 Essentials
- GitHub入門與實踐
- Python自然語言理解:自然語言理解系統開發與應用實戰
- 算法設計與分析:基于C++編程語言的描述
- iOS開發項目化入門教程
- Machine Learning for OpenCV
- 深入淺出Python數據分析
- Node.js 6.x Blueprints
- 微服務設計