Python Program to insert data into a table using MySQL


In this program, you will learn how to insert data into a table using Python and MySQL.


create database xiith;

use xiith;

create table emp(id varchar(10), name varchar(30),salary int(10))

select * from emp;

Example: How to insert data into a table using Python and MySQL.

import mysql.connector

myconn = mysql.connector.connect(host="localhost", user="root", passwd="12345678", database="xiith")
cur = myconn.cursor()
sql = "insert into emp(id, name, salary) values(%s, %s, %s)"

val = ("101", "John", 40000)
try:
    cur.execute(sql, val)

    myconn.commit()
except:
    myconn.rollback()
print(cur.rowcount, "record inserted!")
myconn.close()

Output:

python mysql insert