前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >MySQL与Python交互入门

MySQL与Python交互入门

作者头像
数据森麟
发布2020-04-14 21:40:16
1.5K0
发布2020-04-14 21:40:16
举报
文章被收录于专栏:数据森麟

作者:田志晨

来源:小田学Python

MySQL入门

一、基本命令

代码语言:javascript
复制
1、启动服务    以管理员身份运行cmd    net start 服务名称2、停止服务    以管理员身份运行cmd    net stop 服务名称3、连接数据库    格式:mysql - u root - p ->输入密码4、退出登录(断开连接)    exit或quit5、查看版本(连接后可以执行)    select version()6、显示当前时间(连接后可以执行)    select now()7、远程连接    mysql - h ip地址 - u 用户名 - p ->输入对方mysql密码

二、数据库操作命令

代码语言:javascript
复制
1、创建数据库    create database 数据库名 charset = utf82、删除数据库    drop database 数据库名3、切换数据库    use 数据库名4、查看当前选择的数据库    select database()

三、表操作命令

代码语言:javascript
复制
1、查看数据库中所有表    show tables2、创建表    create table 表名(列及类型)    eg:create table student(id int auto_increment primary key,                            name varchar(20) not null)    注:auto_increment 自增长   primary key 主键 not null 非空3、删除表    drop table 表名4、查看表结构    desc 表名5、查看建表语句    show create table 表名6、重命名表    rename table 原表名 to 新表名7、修改表    alter table 表名 add | change | drop 列名

四、数据操作命令

代码语言:javascript
复制
1、增    a、全列插入        insert into 表名 values(...)        eg: insert into student values(0, "tom", "北京")        主键列是自动增长,但是在全列插入时需要占位,通常使用0,插入成功以后以实际数据为准    b、缺省插入        insert into 表名(列1,列2..) values(值1,值2..)    c、同时插入多条数据        insert into 表名 values(...), (...), ...2、删    delete from 表名 where 条件    不写条件则全删3、改    update 表名 set 列1 = 值1, 列2 = 值2, ... where 条件4、查    查询表中的全部数据    select * from 表名

五、查

代码语言:javascript
复制
1、基本语法    select * from 表名    from关键字后面是表名,表示数据来源于这张表    select后面写表中的列名,如果是 * 表示在结果集中显示表中的所有列    在select后面的列名部分,可以使用as为列名起别名,这个别名显示在结果集中    如果要查询多个列,之间使用逗号分隔    # eg:select name as a,age from student;2、消除重复行    在select后面列前面使用distinct可以消除重复的行    eg:select distinct gender from student3、条件查询    a、语法        select * from 表名 where 条件    b、比较运算符        等于(=) 大于(>) 小于(<) 大于等于(>=) 小于等于(<=) 不等于(!= 或 <>)    c、逻辑运算符        and or not    d、模糊查询        like        % 表示任意多个任意字符        _ 表示一个任意字符    e、范围查询        in 表示在一个非连续的范围内        between。。。and。。。表示在一个连续的范围内        eg:where id in (8, 10, 13)    f、空判断        注意:null与""是不同的        判断空:is null        判断非空:is not null    g、优先级        小括号,not,比较运算符。逻辑运算符and比or优先级高,同时出现并希望先选or,需要结合括号来使用4、聚合    为了快速得到统计数,提供了5个聚合函数    a、count(*)   表示计算总行数,括号中可以写 * 或列名    b、max(列)    表示求此列的最大值    c、min(列)    表示求此列的最小值    d、sum(列)    表示求此列的和    e、avg(列)    表示求此列的平均值5、分组    按照字段分组,表示此字段相同的数据会被放到一个集合中。分组后,只能查询出相同的数据列,对于有差异的数据列无法显示在结果集中    可以对分组后的数据进行统计,做聚合运算    select 列1, 列2, 聚合... from 表名 group by 列1, 列2 having 列1, 列2    eg: 查询男女生总数        select gender, count(*) from student group by gender    where与having的区别:where是对from后面指定的表进行筛选,属于对原始数据的筛选;having是对group by的结果进行筛选。6、排序    select * from 表名 order by 列1 asc | desc, 列2 asc | desc, ...    a、将数据按照列1进行排序,如果某些列1的值相同则按照列2排序    b、默认按照从小到大的顺序    c、asc升序    d、desc降序7、分页    select * from 表名 limit start, count    从start开始,看count条

六、关联

代码语言:javascript
复制
建表语句1、create table class(id int auto_increment primary key, name varchar(20) not null, stuNum int not null)2、create table students(id int auto_increment primary key, name varchar(20) not null, gender bit default 1, classid int not bull, foreign key(classid) references class(id))
插入一些数据:insert into class values(0, "python1", 50), (0, "python2", 60), (0, "python3", 70)insert into students values(0, "tom", 1, 1)
关联查询:select students.name, class.name from class inner join students on class.id = students.classid
分类:    1、表A inner join 表B        表A与表B匹配的行会出现在结果集中    2、表A left join 表B        表A与表B匹配的行会出现在结果集中,外加表A中独有的数据,未对应的数据使用null填充    3、表A right join 表B        表A与表B匹配的行会出现在结果集中,外加表B中独有的数据,未对应的数据使用null填充

交互

进行python与mysql的交互需要安装pymysql库,安装也很简单,常规的pip install pymysql就可以了。

代码语言:javascript
复制
import pymysql

# 连接数据库
# 参数一:mysql服务所在主机的IP
# 参数二:用户名
# 参数三:密码
# 参数四:要连接的数据库名
# db = pymysql.connect("localhost", "root", "123456", "student")
db = pymysql.connect("192.168.18.1", "root", "123456", "student")

# 创建一个cursor对象
cursor = db.cursor()

sql = "select version()"

# 执行sql语句
cursor.execute(sql)

# 获取返回的信息
data = cursor.fetchone()
print(data)

# 断开
cursor.close()
db.close()

创建数据库表

代码语言:javascript
复制
import pymysql

db = pymysql.connect("localhost", "root", "123456", "student")
cursor = db.cursor()

# 检查表是否存在,如果有则删除
cursor.execute("drop table if exists bancard")

# 建表
sql = "create table bandcard(id int auto_increment primary key, money int not null)"
cursor.execute(sql)

cursor.close()
db.close()

插入、删除、更新

代码语言:javascript
复制
import pymysql

db = pymysql.connect("localhost", "root", "123456", "student")
cursor = db.cursor()

sql = "insert into bandcard values(0, 300)"         # 插入
# sql = "update bandcard set money=1000 where id=1" # 更新
# sql = "delete from bandcard where money=200"      # 删除

try:
  cursor.execute(sql)
  db.commit() # 执行这条才插入
except:
  # 如果提交失败,回滚到上一次数据
  db.rollback()
cursor.close()
db.close()

查询

代码语言:javascript
复制
import pymysql

'''
fetchone()
功能:获取下一个查询结果集,结果集是一个对象

fetchall()
功能:接收全部的返回的行

rowcount
是一个只读属性,返回execute()方法影响的行数
'''

db = pymysql.connect("localhost", "root", "123456", "student")
cursor = db.cursor()

sql = "select * from bandcard where money>200"
try:
  cursor.execute(sql)

  reslist = cursor.fetchall()
  for row in reslist:
    print("%d--%d" % (row[0], row[1]))
except:
  # 如果提交失败,回滚到上一次数据
  db.rollback()
cursor.close()
db.close()
本文参与 腾讯云自媒体同步曝光计划,分享自微信公众号。
原始发表:2020-04-12,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 数据森麟 微信公众号,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
相关产品与服务
云数据库 SQL Server
腾讯云数据库 SQL Server (TencentDB for SQL Server)是业界最常用的商用数据库之一,对基于 Windows 架构的应用程序具有完美的支持。TencentDB for SQL Server 拥有微软正版授权,可持续为用户提供最新的功能,避免未授权使用软件的风险。具有即开即用、稳定可靠、安全运行、弹性扩缩等特点。
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档