Python Tutorials

Overview

In Python, the “JOIN” statement is used to combine rows from two or more tables, based on a related column they share.

Let’s say we have two tables. The “users” table and the “cars” table.

Users:

  • { id: 1, name: ‘Marty’, fav: 122}
  • { id: 2, name: ‘Johnny’, fav: 267}
  • { id: 3, name: ‘Bobby’, fav:}

Cars:

  • { id: 122, car: ‘Maserati’ }
  • { id: 154, car: ‘Porsche’ }
  • { id: 267, car: ‘Alfa Romeo’ }
import mysql.connector

mydb = mysql.connector.connect(
    host="localhost",
    user="myusername",
    password="mypassword",
    database="mydatabase"
)

mycursor = mydb.cursor()

sql = "SELECT \
    users.name AS user, \
    cars.car AS favorite \
    FROM users \
    INNER JOIN cars ON users.fav = cars.id"

mycursor.execute(sql)

myresult = mycursor.fetchall()

for x in myresult:
    print(x)

Output:

('Marty', 'Maserati')
('Johnny', 'Alfa Romeo')

Note

INNER JOIN only shows the records where there is a match.

Left Join

“LEFT JOIN” is used to show all users (all rows from the first table) even if there is no match in the second table.

import mysql.connector

mydb = mysql.connector.connect(
    host="localhost",
    user="myusername",
    password="mypassword",
    database="mydatabase"
)

mycursor = mydb.cursor()

sql = "SELECT \
    users.name AS user, \
    cars.car AS favorite \
    FROM users \
    LEFT JOIN cars ON users.fav = cars.id"

mycursor.execute(sql)

myresult = mycursor.fetchall()

for x in myresult:
    print(x)

Output:

('Marty', 'Maserati')
('Johnny', 'Alfa Romeo')
('Bobby', None)

Right Join

“RIGHT JOIN” is used to show all cars (all rows from the second table) even if there is no match in the first table.

import mysql.connector

mydb = mysql.connector.connect(
    host="localhost",
    user="myusername",
    password="mypassword",
    database="mydatabase"
)

mycursor = mydb.cursor()

sql = "SELECT \
    users.name AS user, \
    cars.car AS favorite \
    FROM users \
    RIGHT JOIN cars ON users.fav = cars.id"

mycursor.execute(sql)

myresult = mycursor.fetchall()

for x in myresult:
    print(x)

Output:

('Marty', 'Maserati')
(None,'Porsche')
('Johnny', 'Alfa Romeo')

Python Notes:

  • The most recent major version of Python is Python 3; however, Python 2 is still in use and quite popular, although not being updated with anything other than security updates
  • Python uses new lines to complete a command, as opposed to other programming languages which often use semicolons or parentheses
  • Python relies on indentation, using whitespace to define scope, such as the scope of loops, functions, and classes; other programming languages often use curly-brackets for this purpose
  • Python string methods return new values, and DO NOT change the original string
  • Python tuples are unchangeable after created (their items CANNOT be changed or re-ordered at a later point)
  • Python sets are unordered (may appear in random orders when called), unchangeable (the value of individual items cannot be changed after creation), unindexed (items cannot be referred to by index or key), and duplicates are NOT ALLOWED
  • As of v3.7, Python dictionaries are ordered and duplicates ARE ALLOWED; in v3.6 and earlier, dictionaries were unordered (did not have a defined order and could not be referred to using an index)
  • Python does not have built-in support for arrays, but Python lists can be used as pseudo “arrays”; therefore, all Python list methods will work with these pseudo “arrays”

We’d like to acknowledge that we learned a great deal of our coding from W3Schools and TutorialsPoint, borrowing heavily from their teaching process and excellent code examples. We highly recommend both sites to deepen your experience, and further your coding journey. We’re just hitting the basics here at 1SMARTchicken.