Python中mysql命令安装

Posted zqntx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python中mysql命令安装相关的知识,希望对你有一定的参考价值。

pymysql是python中操作mysql的模块

安装mysql
pip install pymysql
mysql版本:mysql-installer-community-8.0.12.0
基本命令
创建数据库 create database student;
使用数据库 use student;
显示所有表 show tables;

import pymysql
#1、创建数据库连接对象
connect = pymysql.connect(
# host:表示主机地址
# 127.0.0.1 本机ip
# 172.16.21.41 局域网ip
# localhost (local:本地 host:主机 合在一起为本地主机的意思)
# host表示mysql安装的地址
host=“127.0.0.1”,
user=“root”,
passwd=“123456”,
# mysql默认的端口号是3306
port=3306,
# 数据库名称
db=“student”
)

#2、创建游标,用于操作表
cursor = connect.cursor()

3、创建表
create_table = “create table if not exists stu (name varchar(30), age integer, phone varchar(11))”
cursor.execute(create_table)


#4、表的增、删、改、查
#增加
insert_table = “insert into stu (name,age,phone) values (‘张三’, 19, ‘13332001256’)”
cursor.execute(insert_table)

#删除
delete_table = “delete from stu where name=‘张三’”
cursor.execute(delete_table)

#修改
update_table = “update stu set age = 20 where id < 10”
cursor.execute(update_table)

#查询
select_table = “select * from stu”
res = cursor.execute(select_table)

s = res.fetchone()
print(s)

ss = res.fetchall()
print(ss)

5、提交sql语句
connect.commit()
6、关闭游标、数据库
cursor.close()
connect.close()

 

以上是关于Python中mysql命令安装的主要内容,如果未能解决你的问题,请参考以下文章

使用pip install mysqlclient命令安装mysqlclient失败?(基于Python)

Python3之MySQL操作

python mysql安装失败

MySQL命令自动补全工具——mycli安装

Python3.5连接MySQL

在 Mac OS 10.13.15 上安装 MySQL-python 导致命令“clang”失败,退出状态为 1