python关于Mysql操作

一.安装mysql

windows下,直接下载mysql安装文件,双击安装文件下一步进行操作即可;

Linux下的安装也很简单,除了下载安装包进行安装外,一般的linux仓库中都会有mysql ,我们只需要通过一个命令就可以下载安装:

Ubuntu、deepin

sudo apt-get install mysql-server

Sudo apt-get install  mysql-client

centOS、redhat

yum install mysql

二.安装MySQL-python

要想使python可以操作mysql 就需要MySQL-python驱动,它是python 操作mysql必不可少的模块。

下载地址:https://pypi.python.org/pypi/MySQL-python/

下载MySQL-python-1.2.5.zip 文件之后直接解压,进入MySQL-python-1.2.5目录执行如下语句:

python setup.py install

三.测试是否安装成功

执行以下语句看是否报错,不报错说明MySQLdb模块安装成功

import MySQLdb

四.Mysql基本操作

查看当前所有的数据库

show databases;

选择数据库

use test;

查看test库下面的表

show tables;

创建msg表,包括id、title、name、content四个字段

create table `msg`(

`id` int primary key auto_increment,

`title` varchar(60),

`name` varchar(10),

`content` varchar(1000)

);

向msg表内插入数据

insert into msg

(id,title,name,content)

values

(1,‘test01‘,‘zhzhgo01‘,‘test content01‘),

(2,‘test02‘,‘zhzhgo02‘,‘test content02‘),

(3,‘test03‘,‘zhzhgo03‘,‘test content03‘),

(4,‘test04‘,‘zhzhgo04‘,‘test content04‘);

(5,‘test05‘,‘zhzhgo05‘,‘test content05‘);

查看msg表的数据

select * from user;

修改name等于zhzhgo05的content为test05

update msg set content=‘test05‘ where name=‘zhzhgo05‘;

删除name=zhzhgo05的数据

delete from msg where name=‘zhzhgo05‘;

查看表内容

myselect * from msg;

给root用户在127.0.0.1这个机器上赋予全部权限,密码为123456,并即时生效

grant all privileges on *.* to ‘root‘@‘127.0.0.1‘ identified by ‘123456‘

flash privileges

五.Python操作Mysql数据库

1.基本操作

import MySQLdb

conn=MySQLdb.connect(host="127.0.0.1",user="root",\

passwd="123456",db="test",\

port=3306,charset="utf8")

connect() 方法用于创建数据库的连接,里面可以指定参数:主机、用户名、密码、所选择的数据库、端口、字符集,这只是连接到了数据库,要想操作数据库还需要创建游标

cur=conn.cursor()

通过获取到的数据库连接conn下的cursor()方法来创建游标

n=cur.execute(sql,param)

通过游标cur操作execute()方法写入sql语句来对数据进行操作,返回受影响的条目数量

cur.close()

关闭游标

conn.commit()

提交事物,在向数据库插入一条数据时必须要有这个方法,否则数据不会被真正的插入

conn.close()

关闭数据库连接

2.插入数据

cur.execute("insert into msg values(‘test05‘,‘zhzhgo05‘,‘test content05‘)")可以直接插入一条数据,但是想插入多条数据的时候这样做并不方便,此时可以用excutemany()方法,看下面的例子:

import MySQLdb
conn=MySQLdb.connect(host="127.0.0.1",user="root",                     passwd="123456",db="test",                     port=3306,charset="utf8") 
cur = conn.cursor()
#一次插入多条记录
sql="insert into msg values(%s,%s,%s)"
#executemany()方法可以一次插入多条值,执行单条sql语句,但是重复执行参数列表里的参数,返回值为受影响的行数
cur.executemany(sql,[
    (‘test05‘,‘zhzhgo05‘,‘test content05‘),
    (‘test06‘,‘zhzhgo06‘,‘test content06‘),
    (‘test07‘,‘zhzhgo07‘,‘test content07‘),
    ])
cur.close()
conn.commit()
conn.close()

如果想要向表中插入1000条数据怎么做呢,显然用上面的方法很难实现,如果只是测试数据,那么可以利用for循环,现有一张user表,字段id自增,性别随机,看下面代码:

import MySQLdb
import random
conn=MySQLdb.connect(host="127.0.0.1",user="root",                     passwd="",db="test",                     port=3306,charset="utf8")
cur=conn.cursor()
sql="insert into user (name,gender) values"
for i in range(1000):
    sql+="(‘user"+str(i)+"‘,"+str(random.randint(0,1))+"),"
sql=sql[:-1]
print sql
cur.execute(sql)

3.查询数据

执行cur.execute("select * from msg")来查询数据表中的数据时并没有把表中的数据打印出来,如下:

import MySQLdb
conn=MySQLdb.connect(host="127.0.0.1",user="root",                     passwd="",db="test",                     port=3306,charset="utf8")
cur=conn.cursor()
sql=‘select * from msg‘
n=cur.execute(sql)
print n

此时获得的只是我们的表中有多少条数据,并没有把数据打印出来

介绍几个常用的函数:

fetchall():接收全部的返回结果行

fetchmany(size=None):接收size条返回结果行,

如果size的值大于返回的结果行的数量,

则会返回cursor.arraysize条数据

fetchone():返回一条结果行

scroll(value,mode=‘relative‘):移动指针到某一行,

如果mode=‘relative‘,则表示从当前所在行移动value条,

如果mode=‘absolute‘,则表示从结果集的第一行移动value条

看下面的例子:

import MySQLdb
conn=MySQLdb.connect(host="127.0.0.1",user="root",                     passwd="",db="test",                     port=3306,charset="utf8")
cur=conn.cursor()
sql=‘select * from msg‘
n=cur.execute(sql)
print cur.fetchall()
print "-------------------"
cur.scroll(1,mode=‘absolute‘)
print cur.fetchmany(1)
print "-------------------"
cur.scroll(1,mode=‘relative‘)
print cur.fetchmany(1)
print "-------------------"
cur.scroll(0,mode=‘absolute‘)
row=cur.fetchone()
while row:
    print row[2]
    row=cur.fetchone()
cur.close()
conn.close()

执行结果如下:

>>>

((1L, u‘test01‘, u‘zhzhgo01‘, u‘test content01‘), (2L, u‘test02‘, u‘zhzhgo02‘, u‘test content02‘), (3L, u‘test03‘, u‘zhzhgo03‘, u‘test content03‘), (4L, u‘test04‘, u‘zhzhgo04‘, u‘test content04‘))

-------------------

((2L, u‘test02‘, u‘zhzhgo02‘, u‘test content02‘),)

-------------------

((4L, u‘test04‘, u‘zhzhgo04‘, u‘test content04‘),)

-------------------

zhzhgo01

zhzhgo02

zhzhgo03

zhzhgo04

>>>

时间: 2025-01-08 01:09:29

python关于Mysql操作的相关文章

Python学习 Day17 Python对Mysql操作和使用ORM框架(SQLAlchemy)

Python对Mysql操作和使用ORM框架(SQLAlchemy) Mysql 常见操作 数据库操作 创建数据库 create database fuzjtest 删除数据库 drop database fuzjtest 查询数据库       show databases 切换数据库       use databas 123123 ###用户授权 创建用户          create user '用户名'@'IP地址' identified by '密码'; 删除用户        

python连接mysql操作(1)

python连接mysql操作(1) import pymysql import pymysql.cursors # 连接数据库 connect = pymysql.Connect( host='10.10.146.28', port=3306, user='admin_m', passwd='fcfmTbRw1tz2x5L5GvjJ', db='test', charset='utf8mb4' ) def create_table(): cursor = connect.cursor() #

Python的Mysql操作

网上好多的帖子感觉比较老了,而且千篇一律.我到mysql看了一下官网上python驱动的操作,发现与大部分网站说的都不一样. 首先安装的驱动是: pip install mysql-connector-python 上面是在ubuntu上的命令. 安装之后,开发的样例代码如下: from __future__ import print_function from decimal import Decimal from datetime import datetime, date, timedel

Python之MySQL操作及Paramiko模块操作

一.MySQL简介 MySQL是一个关系型数据库管理系统,由瑞典MySQL AB 公司开发,目前属于 Oracle 旗下公司.MySQL 最流行的关系型数据库管理系统,在 WEB 应用方面MySQL是最好的 RDBMS (Relational Database Management System,关系数据库管理系统) 应用软件之一. MySQL是一种关联数据库管理系统,关联数据库将数据保存在不同的表中,而不是将所有数据放在一个大仓库内,这样就增加了速度并提高了灵活性. MySQL所使用的 SQL

python数据库(mysql)操作

一.软件环境 python环境默认安装了sqlite3,如果需要使用sqlite3我们直接可以在python代码模块的顶部使用import sqlite3来导入该模块.本篇文章我是记录了python操作mysql数据库,mysql数据库下载 由于我之前安装的是wampserver,默认安装了php.mysql和apache这3个环境,因此我没有在单独安装mysql数据库,只是下载了一个mysql管理工具Navicat for MySQL.在使用Navicat for MySQL连接本地mysql

[python] 连接MySQL操作

环境:Linux CentOS6.7,python 2.7.13 说明:连接MySQL,进行增删改查操作,并将执行的SQL和耗时记录到日志里 demo: #!/usr/bin/env python # -*- coding:utf-8 -*- import MySQLdb import logging import time ''' 设置日志输出路径和格式 ''' logging.basicConfig(level=logging.INFO,                     format

Python之MySql操作

1.安装驱动 输入命令:pip install MySQL-python 2.直接使用驱动 #coding=utf-8 import MySQLdb conn= MySQLdb.connect( host='127.0.0.1', port = 3306, user='root', passwd='root', db ='数据库名称', charset='utf8' ) cur = conn.cursor() aa=cur.execute("select * from 表名") pri

Python 连接 Mysql 操作异常

UserWarning: /home/toddler/.python-eggs is writable by group/others and vulnerable to attack when used with get_resource_filename. Consider a more secure location (set with .set_extraction_path or the PYTHON_EGG_CACHE environment variable). warnings.

python 的mysql 操作

参考文章 import pymysql import pandas from IPython.core.display import display db = pymysql.connect( host='localhost', port=3306, user='root', password='root', db='test', charset='utf8' ) cursor = db.cursor() sql = "select * from user" result = curs