We use cookies to enhance your browsing experience.

Learn More
Back to Library
SQLsql

Common Joins

Inner, Left, and Right joins.

-- Inner Join
SELECT *
FROM table1
INNER JOIN table2 ON table1.id = table2.id;

-- Left Join
SELECT *
FROM table1
LEFT JOIN table2 ON table1.id = table2.id;
sql join query
25+Total Tools
Operations
4Languages
100%Privacy

We use cookies to enhance your experience and serve personalized ads.