以下demo均以python2中的mysqldb模块
一、插入数据
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
|
import MySQLdb conn = MySQLdb.connect(host=‘127.0.0.1‘,user=‘root‘,passwd=‘1234‘,db=‘mydb‘) cur = conn.cursor() li =[ (‘alex‘,‘usa‘), (‘sb‘,‘usa‘), ] reCount = cur.executemany(‘insert into UserInfo(Name,Address) values(%s,%s)‘,li) conn.commit() cur.close() conn.close() print reCount 批量插入数据
批量插入数据
二、删除数据
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|
三、修改数据
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
四、查数据
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
|