top of page

Inner Joins and Creating new tables in SQL

Software / programming language used:
SQL

Project Details:

This code was used as part of another project. This code demonstrates the ability to create inner joins between 2 tables that contain the same column names and data types by creating 2 sub tables.

​

The link to the main temperature project is available here

Highlights

SQL Inner Join

In order for the inner join to work, due to the same naming conventions and data types, different tables with different column names had to be created before the inner join could take place.

bottom of page