SQL JOIN — combining rows from two or more tables.
Types:
Example:
1SELECT customers.name, orders.total2FROM customers3INNER JOIN orders ON customers.id = orders.customer_id;45SELECT customers.name, orders.total6FROM customers7LEFT JOIN orders ON customers.id = orders.customer_id;8-- Shows all customers, even without orders
Why BA needs it: