您好,登錄后才能下訂單哦!
這篇文章給大家介紹怎么在Python中使用fetchone()查詢mysql數據庫,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
1、云計算,典型應用OpenStack。2、WEB前端開發,眾多大型網站均為Python開發。3.人工智能應用,基于大數據分析和深度學習而發展出來的人工智能本質上已經無法離開python。4、系統運維工程項目,自動化運維的標配就是python+Django/flask。5、金融理財分析,量化交易,金融分析。6、大數據分析。
demo.py(查詢,取出一條數據,fetchone):
from pymysql import * def main(): # 創建Connection連接 conn = connect(host='localhost',port=3306,user='root',password='mysql',database='jing_dong',charset='utf8') # 獲得Cursor對象 cs1 = conn.cursor() # 執行select語句,并返回受影響的行數:查詢一條數據 count = cs1.execute('select id,name from goods where id>=4') # 打印受影響的行數 print("查詢到%d條數據:" % count) for i in range(count): # 獲取查詢的結果 result = cs1.fetchone() # 打印查詢的結果 print(result) # 元組 (1, '張三', 20, '男') # 獲取查詢的結果 # 關閉Cursor對象 cs1.close() conn.close() if __name__ == '__main__': main()
demo.py(查詢,取出多條數據,fetchmany,fetchall):
from pymysql import * def main(): # 創建Connection連接 conn = connect(host='localhost',port=3306,user='root',password='mysql',database='jing_dong',charset='utf8') # 獲得Cursor對象 cs1 = conn.cursor() # 執行select語句,并返回受影響的行數:查詢一條數據 count = cs1.execute('select id,name from goods where id>=4') # 打印受影響的行數 print("查詢到%d條數據:" % count) # for i in range(count): # # 獲取查詢的結果 # result = cs1.fetchone() # 取出一條記錄,返回元組。 # # 打印查詢的結果 # print(result) # # 獲取查詢的結果 # 獲取所有記錄 result = cs1.fetchall() # fetchmany(3) 取出3條記錄,返回二維元組。 print(result) # 二維元組 # 關閉Cursor對象 cs1.close() conn.close() if __name__ == '__main__': main()
關于怎么在Python中使用fetchone()查詢mysql數據庫就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。