python访问mysql数据库的实现方法(2则示例)

作者:zm2714 时间:2024-01-23 05:58:41 

本文实例讲述了python访问mysql数据库的实现方法。分享给大家供大家参考,具体如下:

首先安装与Python版本匹配的MySQLdb

示例一


import MySQLdb
conn=MySQLdb.connect(user='root',passwd='123',db='example')
cur=conn.cursor()
cur.execute("select id,lastname,firstname, date_format(dob,'%Y-%m-%d %H-%i-%s'),phone from employee")
##select username,password, date_format(reg_date,'%Y-%m-%d %H-%i-%s') as date from reg_user
for data in cur.fetchall():
 print data
cur.close()
conn.commit()
conn.close()

示例二


import MySQLdb
conn = MySQLdb.connect(host='localhost',user='root',passwd='')
cursor = conn.cursor()
cursor.execute("create database python")
cursor.execute('use python')
cursor.execute("create table test(id int, content varchar(100))")
#插入一条100条数据
for i in range(1,100):
  cursor.execute("insert into test values(%s,%s)",[i,'haha'])
#获取数据
cursor.execute('select * from test')
results = cursor.fetchall()
for r in results
  print r
conn.close()

希望本文所述对大家Python程序设计有所帮助。

标签:python,mysql
0
投稿

猜你喜欢

  • Python OpenCV基于HSV的颜色分割实现示例

    2021-11-04 19:24:26
  • Postman传递对象参数(包含有集合对象)

    2023-06-08 04:10:14
  • Python还能这么玩之只用30行代码从excel提取个人值班表

    2022-05-03 22:49:45
  • 很快大多数网民将放弃IE浏览器

    2009-02-04 16:43:00
  • Python+Matplotlib实现绘制三维折线图

    2021-05-21 22:15:50
  • mssql2005,2008导出数据字典实现方法

    2023-07-23 19:11:30
  • wxpython自定义下拉列表框过程图解

    2023-11-14 04:01:18
  • Mysql systemctl start mysqld报错的问题解决

    2024-01-26 03:41:45
  • hello world程序集锦

    2022-10-31 08:12:17
  • python3 requests中使用ip代理池随机生成ip的实例

    2022-11-19 21:52:04
  • python查找特定名称文件并按序号、文件名分行打印输出的方法

    2023-11-27 03:35:35
  • Python实现随机森林回归与各自变量重要性分析与排序

    2023-05-04 05:52:21
  • Vue项目之学生管理系统实例详解

    2024-04-28 09:31:57
  • GitHub上值得推荐的8个python 项目

    2021-01-11 22:40:12
  • 三种Golang数组拷贝方式及性能分析详解

    2023-07-13 07:54:27
  • 利用pandas进行大文件计数处理的方法

    2021-05-20 02:36:55
  • 关于ASP循环表格的问题之解答[比较详细]

    2011-04-08 11:14:00
  • Pytorch可视化的几种实现方法

    2023-06-11 17:44:57
  • 谈谈网页设计中的字体应用 (1) Font Set

    2009-11-24 12:55:00
  • PHP PDOStatement::debugDumpParams讲解

    2023-06-06 04:18:55
  • asp之家 网络编程 m.aspxhome.com