About Lesson
MySQL Joins
The SELECT query retrieves data from a single table at a time. A MySQL database schema can contain multiple tables. We have to join tables to obtain related information from multiple tables. Joining tables is combining multiple tables when obtaining data stored in multiple tables is necessary. Tables can be joined together using a SELECT statement, which retrieves data from multiple tables at a time.
INNER JOIN
OUTER JOIN
Join the conversation