Python MySQL进行数据库表变更和查询

这篇文章主要介绍了python mysql进行数据库表变更和查询的相关资料,需要的朋友可以参考下

Python连接MySQL,进行数据库表变更和查询:

python mysql insert delete query:

行者AI 行者AI

行者AI绘图创作,唤醒新的灵感,创造更多可能

行者AI 100 查看详情 行者AI

#!/usr/bin/python  import MySQLdb def doInsert(cursor,db):   #insert   # Prepare SQL query to INSERT a record into the database.   sql = "UPDATE EMPLOYEE SET AGE = AGE+1 WHERE SEX = '%c'" %('M')   try:     cursor.execute(sql)     db.commit()   except:     db.rollback()  def do_query(cursor,db):   sql = "SELECT * FROM EMPLOYEE       WHERE INCOME > '%d'" % (1000)   try:     # Execute the SQL command     cursor.execute(sql)     # Fetch all the rows in a list of lists.     results = cursor.fetchall()     print 'resuts',cursor.rowcount     for row in results:       fname = row[0]       lname = row[1]       age = row[2]       sex = row[3]       income = row[4]       # Now print fetched result       print "fname=%s,lname=%s,age=%d,sex=%s,income=%d" %            (fname, lname, age, sex, income )   except:     print "Error: unable to fecth data"  def do_delete(cursor,db):   sql = 'DELETE FROM EMPLOYEE WHERE AGE > {}'.format(20)   try:     cursor.execute(sql)     db.commit()   except:     db.rollback()  def do_insert(cursor,db,firstname,lastname,age,sex,income):   sql = "INSERT INTO EMPLOYEE(FIRST_NAME,      LAST_NAME, AGE, SEX, INCOME)      VALUES ('%s', '%s', '%d', '%c', '%d' )" %      (firstname,lastname,age,sex,income)   try:     cursor.execute(sql)     db.commit()   except:     db.rollback()   # Open database connection # change this to your mysql account #connect(server,username,password,db_name) db = MySQLdb.connect("localhost","root","root","pydb" ) # prepare a cursor object using cursor() method cursor = db.cursor() do_query(cursor,db) doInsert(cursor,db) do_query(cursor,db) do_delete(cursor,db) do_query(cursor,db) do_insert(cursor,db,'hunter','xue',22,'M',2000) do_insert(cursor,db,'mary','yang',22,'f',5555) do_insert(cursor,db,'zhang','xue',32,'M',5000) do_insert(cursor,db,'hunter','xue',22,'M',333) do_query(cursor,db) # disconnect from server db.close()

之后可以在此基础上根据需要进行封装。

以上就是Python MySQL进行数据库表变更和查询的详细内容,更多请关注创想鸟其它相关文章!

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/411317.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2025年11月6日 23:24:39
下一篇 2025年11月6日 23:26:23

相关推荐

发表回复

登录后才能评论
关注微信