Python3如何使用MySQL創建表格
nector API來連接MySQL數據庫,并創建表格。
nector API
nector中安裝:
stallysqlnector
步驟2:連接MySQL數據庫
中,我們可以使用以下代碼連接MySQL數據庫:
portysqlnector
ydbysqlnectornect(
host="localhost",
password="yourpassword"
tydb)
ame”和“yourpassword”替換為您的MySQL用戶名和密碼。
步驟3:創建表格
ersame”和“address”列:
portysqlnector
ydbysqlnectornect(
host="localhost",
password="yourpassword",ydatabase"
ycursorydb.cursor()
ycursorersame VARCHAR(255), address VARCHAR(255))")
ydatabase”替換為您的MySQL數據庫名稱。
步驟4:向表格中插入數據
ersers”表格中插入一些數據:
portysqlnector
ydbysqlnectornect(
host="localhost",
password="yourpassword",ydatabase"
ycursorydb.cursor()
ersame, address) VALUES (%s, %s)"", "Highway 21")ycursor.execute(sql, val)
ydbmit()
tycursortserted.")
ame”和“address”的值。
3nector代碼中處理大量數據。