您好,登錄后才能下訂單哦!
1,使用Python增加一個(gè)表
#導(dǎo)入用來操作數(shù)據(jù)庫的模塊
import pymysql
#建立連接數(shù)據(jù)庫對(duì)象
conn=pymysql.connect(host='127.2.2.2',user='root',passwd='123456',db='records')
#建立游標(biāo)
cur=conn.cursor()
#用游標(biāo)里的方法執(zhí)行sql語句
cur.execute("create table people(name char(20),height int(3),weight int(3))")
#語句執(zhí)行完后關(guān)閉游標(biāo)
cur.close()
#關(guān)閉到數(shù)據(jù)庫的連接
conn.close()
以上代碼執(zhí)行完成后可以在數(shù)據(jù)庫中查看,已經(jīng)建立了一個(gè)people的表。
2,在表中插入一條數(shù)據(jù)。
#用游標(biāo)里的方法執(zhí)行sql語句
cur.execute("insert into people values('tom',110,34)")
#提交剛才所做的insert操作,讓它生效
conn.commit()
3,修改表中的一條數(shù)據(jù),將height改為177
#用游標(biāo)里的方法執(zhí)行sql語句
cur.execute("update people set height=177 where name='tom' ")
#提交剛才所做的insert操作,讓它生效
conn.commit()
4,查詢表中的數(shù)據(jù)
#用游標(biāo)里的方法執(zhí)行sql語句
cur.execute("select * from people ")
#fetchall方法可以將上面select執(zhí)行的語句結(jié)果抓取下來。
print (cur.fetchall())
5,刪除表中的數(shù)據(jù)
#用游標(biāo)里的方法執(zhí)行sql語句
cur.execute("delete from people where name='tom'")
#提交剛才所做的insert操作,讓它生效
conn.commit()
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。