A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/python/how-to-insert-values-into-mysql-server-table-using-python/ below:

How to insert values into MySQL server table using Python?

How to insert values into MySQL server table using Python?

Last Updated : 23 Jul, 2025

Prerequisite: Python: MySQL Create Table

In this article, we are going to see how to get the size of a table in MySQL using Python. Python allows the integration of a wide range of database servers with applications. A database interface is required to access a database from Python. MySQL Connector-Python module is an API in python for communicating with a MySQL database

Approach:

We are going to use this table:

Example 1: Adding one row into a Table with static values :

Syntax : "INSERT INTO table_name (column_name) VALUES ( valuesOfRow );"

Below is the implementation:

Python3
import mysql.connector

db = mysql.connector.connect(
    host="localhost",
    user="root",
    passwd="root",
    database="testdb"
)
# getting the cursor by cursor() method
mycursor = db.cursor()

insertQuery = "INSERT INTO Fruits (Fruit_name) VALUES ('Apple');"

mycursor.execute(insertQuery)

print("No of Record Inserted :", mycursor.rowcount)

# we can use the id to refer to that row later.
print("Inserted Id :", mycursor.lastrowid)

# To ensure the Data Insertion, commit database.
db.commit() 

# close the Connection
db.close()

 Output:

No of Record Inserted : 1
Inserted Id : 1

How our table looks in SQL after insertion:

Example 2: Adding multiple rows into a table with static values :

Syntax : ''INSERT INTO table_name (column_name) 

                             VALUES ( valuesOfRow1),(valuesOfRow2),....(valuesOfRowN);''

Below is the implementation:

Python3
import mysql.connector

db = mysql.connector.connect(
    host="localhost",
    user="root",
    passwd="root",
    database="testdb"
)

#getting the cursor by cursor() method
mycursor = db.cursor()

insertQuery = '''INSERT INTO 
            Fruits (Fruit_name, Taste, Production_in ) 
            VALUES ('Banana','Sweet',210);'''

mycursor.execute(insertQuery)

print("No of Record Inserted :", mycursor.rowcount)

# To ensure the data insertion, Always commit to the database.
db.commit()

# close the Connection
db.close()

Output:

No of Record Inserted : 2

How our table looks in SQL after insertion:



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4