📜  使用Python将数据插入 MySQL 中现有表的新列

📅  最后修改于: 2022-05-13 01:54:59.102000             🧑  作者: Mango

使用Python将数据插入 MySQL 中现有表的新列

先决条件: Python:MySQL 创建表

在本文中,我们将了解如何使用Python将数据插入 MySQL 中现有表的新列。 Python允许将各种数据库服务器与应用程序集成。从Python访问数据库需要一个数据库接口。 MySQL 连接器Python模块是Python用于与 MySQL 数据库通信的 API。

正在使用的数据库表:

我们将使用geeks (数据库名称) 描述工资的数据库和表格。



方法:

  • 导入模块。
  • 向数据库发出连接请求。
  • 为数据库游标创建一个对象。
  • 执行以下 MySQL 查询:
ALTER TABLE person
ADD salary int(20);
UPDATE persons SET salary = '145000' where Emp_Id=12;
  • 并打印结果。

在开始之前让我们在 SQL 中做同样的事情:

步骤 1:使用 alter 命令创建一个新列。

ALTER TABLE table_name ADD column_name datatype;

第 2 步:在新列中插入数据。

下面是在Python的完整实现:

Python3
# Establish connection to MySQL database
import mysql.connector
  
db = mysql.connector.connect(
    host="localhost",
    user="root",
    password="root123",
    database="geeks"
)
  
# getting the cursor by cursor() method
mycursor = db.cursor()
query_1 = "ALTER TABLE person ADD salary int(20);"
query_2 = "UPDATE persons SET salary = '145000' where Emp_Id=12;"
  
# execute the queries
mycursor.execute(query_1)
mycursor.execute(query_2)
  
mycursor.execute("select * from persons;")
myresult = mycursor.fetchall()
for row in myresult:
    print(row)
  
db.commit()
  
# close the Connection
db.close()


输出: