Python基礎-操作mysql

來源:互聯網
上載者:User

標籤:select   串連   exec   dict   就會   多少   pytho   port   style   

mysql 屬於第三方模組,需要先安裝 pip install pymysql,
sql執行後,資料擷取函數有三種
cur.fetchone()#擷取第一條資料,依次類推下去,第二次執行時候,就會取除去第一次執行結果的那條的第一條(第二條結果,依次類推)
cur.fetchmany(3)#擷取結果中的多少條
cur.fetchall()# 擷取所有的結果

import pymysqlfrom pymysql.cursors import DictCursorcoon = pymysql.connect(host=‘211.149.218.16‘,port=3306,user=‘jxz‘,passwd=‘123456‘,db=‘jxz‘,charset=‘utf8‘)#建立資料庫連接cur = coon.cursor(DictCursor)#建立遊標,倉庫管理員,指定遊標類型,返回字典,如果不指定傳回型別,預設返回的是元組sql=‘select * from stu limit 2,9;‘insert_sql = ‘insert into stu VALUE (89,"nhy");‘cur.execute(insert_sql)cur.execute(sql)#執行sql語句for c in cur:#直接迴圈遊標,每次迴圈的時候就是每一列的資料    print(c)res = cur.fetchall()#擷取sql語句執行的結果,一次性全部擷取coon.commit()#提交print(res[0][1])cur.close()#關閉遊標coon.close()#關閉資料庫連接

 



Python基礎-操作mysql

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.