Skip to content

Connect Tables - JOIN - Intro

By this point, you already know how to perform various kinds of SELECT commands a single table. πŸŽ‰

But the main advantage and feature of SQL databases is being able to handle related data, to connect or "join" different tables together. Connecting rows in one table to rows in another.

Let's see how to manage connected data, using JOIN 🀝

Info

We have a brief overview of SQL JOINs here.

We're kind of in the beating heart of working with relational databases here, so fasten your seat belts and let's go!

We'll first create connected tablesπŸš€

Then we'll read connected dataπŸš€

Next we'll focus on primary and foreign keysπŸš€

Tip

CoLang Workshop participants - we'll save the last tutorialπŸ‘‡ until after we've learned the basics of UPDATEπŸš€ and DELETEπŸš€ with one table at a time.

Eventually we'll learn how to insert, update and delete information in multiple tablesπŸš€