# MySQL JOIN Implicit Inner Join ```sql= SELECT * FROM customers, orders WHERE customer.id = orders.customer_id; ``` Explicit Inner Join ```sql= SELECT * FROM customers JOIN orders ON customer.id = orders.customer_id; ``` Left Join ```sql= SELECT * FROM customers LEFT JOIN orders ON customers.id = orders.customer_id; ```  ###### tags: `MySQL`
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up