使用Python将新的枚举列添加到现有的 MySQL 表
先决条件: Python:MySQL 创建表
在本文中,我们将了解如何使用Python向现有 MySQL 表添加新的枚举列。 Python允许将各种数据库服务器与应用程序集成。从Python访问数据库需要一个数据库接口。 MySQL Connector -Python 模块是Python用于与 MySQL 数据库通信的 API。
正在使用的数据库表:
我们将使用geeks (数据库名称) 描述工资的数据库和表格。
方法:
- 导入模块。
- 向数据库发出连接请求。
- 为数据库游标创建一个对象。
- 执行以下 MySQL 查询:
ALTER TABLE table_name ADD colunm_name ENUM('field1','field2',...)
- 并打印结果。
下面是Python的实现:
Python3
# Establish connection to MySQL database
import mysql.connector
db = mysql.connector.connect(
host = "localhost",
user = "root",
password = "rot23",
database = "geeks"
)
# getting the cursor by cursor() method
mycursor = db.cursor()
query = "ALTER TABLE store ADD Department ENUM('Sweet','Snaks');"
mycursor.execute(query)
mycursor.execute(" desc store;")
myresult = mycursor.fetchall()
for row in myresult:
print(row)
db.commit()
# close the Connection
db.close()
输出:
让我们检查一下 SQL shell: