溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

使用python3 實(shí)現(xiàn)插入數(shù)據(jù)到mysql

發(fā)布時(shí)間:2020-08-27 14:51:08 來源:腳本之家 閱讀:174 作者:辣筆小東 欄目:開發(fā)技術(shù)

我就廢話不多說了,直接上代碼吧!

pip install pymysql

import pymysql
import pandas as pd

conn = pymysql.connect(
    host='localhost',
    user='root',
    password='root1234',
    db='test1',
    port=3306
  )
cur = conn.cursor() # 獲取操作游標(biāo),也就是開始操作
sql = """
  insert into score (sno,cno,degree)
  values ('999','0-000','99')
"""
cur.execute(sql)
conn.commit()
conn.close()
print('finished')

補(bǔ)充拓展:python3 查詢、插入MYSQL數(shù)據(jù)庫(kù)

python操作 mysql的流程如下:

使用python3 實(shí)現(xiàn)插入數(shù)據(jù)到mysql

(1)首先在cmd命令行界面輸入pip3 install pymysql ,安裝好pymysql庫(kù)。

(2)cmd界面輸入python3 啟動(dòng)python,然后輸入import pymysql,沒有報(bào)錯(cuò)的話說錯(cuò)安裝成功。

(3)查詢數(shù)據(jù)庫(kù)具體代碼如下:

def query_data():
  conn = pymysql.connect(host='localhost', port=3306, user='root', passwd='1366', db='sys')
  cur = conn.cursor()
  cur.execute("select * from new")
  result = cur.fetchall()
  print(result)
  conn.commit()
  cur.close()
  conn.close()

代碼解析:

(1)conn = pymysql.connect(host=‘localhost', port=3306, user=‘root', passwd=‘1366', db=‘sys')

以上代碼的信息解析如下:

host:表示MySQL的服務(wù)器地址,本機(jī)用localhost表示。

port:表示MySQL的端口號(hào)

user:表示用戶名

passwd:表示密碼

db:表示使用的數(shù)據(jù)庫(kù)

(2) cur = conn.cursor()

cursor :表示創(chuàng)建并且返回游標(biāo)

(3)cur.execute(“select * from new”)

execute:表示執(zhí)行mysql的語(yǔ)句,select * from new表示從new表格中查詢所有數(shù)據(jù)

(4) result = cur.fetchall()

fetchall :表示獲取所有行

(5)cur.close() 表示關(guān)閉游標(biāo)

(6)conn.close() 表示關(guān)閉數(shù)據(jù)庫(kù)

插入數(shù)據(jù)庫(kù)代碼如下:

#插入數(shù)據(jù)庫(kù)
def insert_data():
  conn = pymysql.connect(host='localhost', port=3306, user='root', passwd='1366', db='sys')
  cur = conn.cursor()
  cur.execute("insert into new(idnew,name,xuexiao) VALUES (5,'xiezhiming','655')")
  conn.commit()
  cur.close()
  conn.close()

以上這篇使用python3 實(shí)現(xiàn)插入數(shù)據(jù)到mysql就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI