您好,登錄后才能下訂單哦!
下文給大家?guī)?lái)關(guān)于使用pymysql實(shí)現(xiàn)增刪改查Mysql數(shù)據(jù)庫(kù),感興趣的話就一起來(lái)看看這篇文章吧,相信看完使用pymysql實(shí)現(xiàn)增刪改查Mysql數(shù)據(jù)庫(kù)對(duì)大家多少有點(diǎn)幫助吧。
#Author Kang import pymysql #連接方法 conn = pymysql.connect(host='10.3.152.35',port=3306,user='kang',passwd='123456',db='test') #創(chuàng)建當(dāng)前游標(biāo) cursor = conn.cursor() #effect_row 為結(jié)果行數(shù) effect_row = cursor.execute("select * from student") #打印當(dāng)前游標(biāo)語(yǔ)句查詢的結(jié)果 print(cursor.fetchall()) #建立需要插入的數(shù)據(jù) data = [ ('MM',33), ('BearBear',4), ('KK',10) ] #執(zhí)行插入多條語(yǔ)句 cursor.executemany('insert into student(name,age) values(%s,%s)',data) #執(zhí)行插入單條帶變量的語(yǔ)句 #data = cursor.execute("insert into user(username,age,department) values('{0}','{1}','{2}')".format(username,age,department)) #提交語(yǔ)句 conn.commit() #執(zhí)行更新語(yǔ)句 cursor.execute('update student set name="MK" where id = 1') conn.commit() #執(zhí)行刪除語(yǔ)句 cursor.execute('delete from student where name = "KK"') conn.commit() cursor.close()conn.close()
看了以上關(guān)于使用pymysql實(shí)現(xiàn)增刪改查Mysql數(shù)據(jù)庫(kù)詳細(xì)內(nèi)容,是否有所收獲。如果想要了解更多相關(guān),可以繼續(xù)關(guān)注我們的行業(yè)資訊板塊。
免責(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)容。