Open In App

Python MySQL – Join

A connector is employed when we have to use mysql with other programming languages. The work of mysql-connector is to provide access to MySQL Driver to the required language. Thus, it generates a connection between the programming language and the MySQL Server.

Python-MySQL-Connector

This is a MySQL Connector that allows Python to access MySQL Driver and implement SQL queries in its programming facility. Here we will try implementing Join clause on our Database and will study the output generated.



JOIN Clause Of SQL

Join allows you to combine two or more tables in SQL, based on related column between them. Based on this application of join there are three types of join:

SELECT column1, column2...
FROM tablename
JOIN tablename ON condition;
SELECT column1, column2...
FROM tablename
INNER JOIN tablename ON condition;
SELECT column1, column2...
FROM tablename
LEFT JOIN tablename ON condition;
SELECT column1, column2...
FROM tablename
RIGHT JOIN tablename ON condition;

The following programs will help you understand this better. DATABASE IN USE: PROGRAM 1: Use of inner join 






import mysql.connector
  
# Connecting to the database
mydb = mysql.connector.connect(
  host ='localhost',
  database ='College',
  user ='root',
)
  
cs = mydb.cursor()
 
# STUDENT and STudent are
# two different database
statement ="SELECT S.NAME from Student S JOIN \
Student on S.Roll_no = Student.Roll_no"
 
cs.execute(statement)
result_set = cs.fetchall()
 
for x in result_set:
    print(x)

OUTPUT: PROGRAM 2: use of LEFT JOIN 




import mysql.connector
  
# Connecting to the database
mydb = mysql.connector.connect(
  host ='localhost',
  database ='College',
  user ='root',
)
  
cs = mydb.cursor()
 
# STUDENT and STudent are
# two different database
statement ="SELECT S.Name from STUDENT S\
 LEFT JOIN Student s ON S.Roll_no = s.Roll_no"
 
cs.execute(statement)
result_set = cs.fetchall()
 
for x in result_set:
    print(x)

OUTPUT: PROGRAM 3 : use of RIGHT JOIN 




import mysql.connector
  
# Connecting to the database
mydb = mysql.connector.connect(
  host ='localhost',
  database ='College',
  user ='root',
)
  
cs = mydb.cursor()
 
# STUDENT and STudent are
# two different database
statement ="SELECT S.Name from STUDENT S RIGHT \
JOIN Student s ON S.Roll_no = s.Roll_no"
 
cs.execute(statement)
result_set = cs.fetchall()
 
for x in result_set:
    print(x)

OUTPUT:


Article Tags :