Workspace
Oscar Hernández Sandoval/

Joining Data in SQL

0
Beta
Spinner

Joining Data with SQL

Here you can access every table used in the course. To access each table, you will need to specify the world schema in your queries (e.g., world.countries for the countries table, and world.languages for the languages table).

Take Notes

Add notes about the concepts you've learned and SQL cells with queries you want to keep.

Add your notes here

Unknown integration
DataFrameavailable as
world_info
variable
-- Add your own queries here
SELECT p1.countries, primer_minister, president
FROM country AS p1
LEFT JOIN president ON p2;
USING(p1.countries)
This query is taking long to finish...Consider adding a LIMIT clause or switching to Query mode to preview the result.
Unknown integration
DataFrameavailable as
df
variable
Run cancelled
This query is taking long to finish...Consider adding a LIMIT clause or switching to Query mode to preview the result.