python连接数据库插入数据「建议收藏」

python连接数据库插入数据「建议收藏」python连接数据库插入数据在数据库创建表并插入测试数据dropdatabaseifexistshrs;createdatabasehrsdefaultcharsetutf8mb4;usehrs;createtabletb_dept(dnointnotnullcomment’编号’,dnamevarchar(10)notnullcomment’名称’,dlocvarchar(20)notnullcomment’所在地’,prim

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全家桶1年46,售后保障稳定

python连接数据库插入数据

在数据库创建表并插入测试数据

drop database if exists hrs;
create database hrs default charset utf8mb4;
use hrs;
create table tb_dept
(
dno int not null comment '编号',
dname varchar(10) not null comment '名称',
dloc varchar(20) not null comment '所在地',
primary key (dno)
);
insert into tb_dept values 
(10, '会计部', '北京'),
(20, '研发部', '成都'),
(30, '销售部', '重庆'),
(40, '运维部', '深圳');
create table tb_emp
(
eno int not null comment '员工编号',
ename varchar(20) not null comment '员工姓名',
job varchar(20) not null comment '员工职位',
mgr int comment '主管编号',
sal int not null comment '员工月薪',
comm int comment '每月补贴',
dno int comment '所在部门编号',
primary key (eno)
);
-- alter table tb_emp add constraint pk_emp_eno primary key (eno);
-- alter table tb_emp add constraint uk_emp_ename unique (ename);
-- alter table tb_emp add constraint fk_emp_mgr foreign key (mgr) references tb_emp (eno);
-- alter table tb_emp add constraint fk_emp_dno foreign key (dno) references tb_dept (dno);
insert into tb_emp values 
(7800, '张三丰', '总裁', null, 9000, 1200, 20),
(2056, '乔峰', '分析师', 7800, 5000, 1500, 20),
(3088, '李莫愁', '设计师', 2056, 3500, 800, 20),
(3211, '张无忌', '程序员', 2056, 3200, null, 20),
(3233, '丘处机', '程序员', 2056, 3400, null, 20),
(3251, '张翠山', '程序员', 2056, 4000, null, 20),
(5566, '宋远桥', '会计师', 7800, 4000, 1000, 10),
(5234, '郭靖', '出纳', 5566, 2000, null, 10),
(3344, '黄蓉', '销售主管', 7800, 3000, 800, 30),
(1359, '胡一刀', '销售员', 3344, 1800, 200, 30),
(4466, '苗人凤', '销售员', 3344, 2500, null, 30),
(3244, '欧阳锋', '程序员', 3088, 3200, null, 20),
(3577, '杨过', '会计', 5566, 2200, null, 10),
(3588, '朱九真', '会计', 5566, 2500, null, 10);
-- mysql中的简单查询语句
use hrs;
-- 查询月薪最高的员工姓名和月薪
-- select ename, sal from tb_emp order by sal desc limit 1;
select ename, sal from tb_emp where sal=(select max(sal) from tb_emp);
select ename, sal from tb_emp t1 where not exists (select 'x' from tb_emp t2 where t2.sal>t1.sal);
select ename, sal from tb_emp t1 where (select count(*) from tb_emp t2 where t2.sal>t1.sal)=0;
select ename, sal from tb_emp t1 where (select count(*) from tb_emp t2 where t2.sal>t1.sal)<1;
-- 查询员工的姓名和年薪((月薪+补贴)*13)
select ename, (ifnull(sal, 0) + ifnull(comm, 0))*13 as yearly_salary from tb_emp order by yearly_salary desc;
-- 查询有员工的部门的编号和人数
select dno as 编号, count(eno) as 人数 from tb_emp group by dno;
-- 查询所有部门的名称和人数
select dname as 名称, ifnull(人数, 0) from tb_dept t1 left join (select dno, count(eno) as 人数 from tb_emp group by dno) t2 on t1.dno=t2.dno;
-- 查询月薪最高的员工(Boss除外)的姓名和月薪
-- select ename, sal from tb_emp where job<>'总裁' order by sal desc limit 1;
select ename, sal from tb_emp where sal=(select max(sal) from tb_emp where job<>'总裁');
-- 查询月薪超过平均月薪的员工的姓名和月薪
select ename, sal from tb_emp where sal>(select avg(sal) from tb_emp);
-- 查询月薪超过其所在部门平均月薪的员工的姓名、部门编号和月薪
select ename, t1.dno, sal from tb_emp t1 inner join 
(select dno, avg(sal) as avg_sal from tb_emp group by dno) t2 on t1.dno=t2.dno and sal>avg_sal order by t1.dno;
-- 查询部门中月薪最高的人姓名、月薪和所在部门名称
select ename, sal, dname from tb_emp, tb_dept,
(select dno, max(sal) as 最高薪水 from tb_emp group by dno) t3
where tb_emp.dno=tb_dept.dno and tb_emp.dno=t3.dno and sal=最高薪水;
select ename, sal, dname from tb_emp inner join tb_dept inner join
(select dno, max(sal) as 最高薪水 from tb_emp group by dno) t3
on tb_emp.dno=tb_dept.dno and tb_emp.dno=t3.dno and sal=最高薪水;
-- 查询月薪最高的员工姓名和月薪
select ename, sal from tb_emp t1 where (select count(*) from tb_emp t2 where t2.sal>t1.sal)=0;
select ename, sal from tb_emp t1 where (select count(*) from tb_emp t2 where t2.sal>t1.sal)<1;
-- 查询每个部门月薪的前两名的员工姓名,月薪和部门编号
select ename, sal, dno from tb_emp t1 where (
select count(*) from tb_emp t2 where t1.dno=t2.dno and t2.sal>t1.sal)<2 
order by dno asc, sal desc;
-- 使用窗口函数 查询每个部门月薪的前两名的员工姓名,月薪和部门编号
select ename, sal, dno from 
(select 
rank() over (partition by dno order by sal desc) as rank_num,
ename, sal, dno
from tb_emp) temp where rank_num<=2;
-- 查询主管的姓名和职位
select ename, job from tb_emp where eno in
(select distinct mgr from tb_emp where mgr is not null);
select ename, job from tb_emp where eno=any
(select distinct mgr from tb_emp where mgr is not null);
select ename, job from tb_emp t1 where exists
(select 'x' from tb_emp t2 where t1.eno=t2.mgr);
-- 查询月薪排名4~6名的员工排名、姓名和月薪
select ename, sal from tb_emp order by sal desc limit 3 offset 3;
use hrs;
select ename, sal,ranking from(select ename, sal,
row_number() over (order by sal desc ) as rownum,
rank() over (order by sal desc) as ranking,
dense_rank() over (order by sal desc) as den_ranking 
from tb_emp) tb_temp where ranking between 4 and 6;

Jetbrains全家桶1年46,售后保障稳定

通过python连接数据库插入数据

import pymysql
no = int(input("请输入部门编号:"))
name = input("请输入部门名称:")
loc = input("请输入部门所在地:")
# 第一步:创建连接
# 在默认情况下创建连接,相当于开启了一个事物环境
# 事物:把若干个(增删改)操作视为一个不可分割的原子性操作,要么全都成功,要么全都失败。
conn = pymysql.connect(
host="主机名",
database="hrs",
user="用户名",
password="密码",
port=3306,
charset='utf8'
)
# print(conn)
try:
# 第二步:获取游标对象
with conn.cursor() as cursor:
# 第三步:通过游标对象向数据库发出SQL并获取执行结果
# 不允许任何形式的格式化字符串进行数据操作
affected_rows = cursor.execute(
'insert into tb_dept values (%s, %s, %s)',
(no, name, loc)
)
if affected_rows == 1:
print('添加部门成功!')
# 第四步:手动提交
conn.commit()
except pymysql.MySQLError:
# 手动回滚
conn.rollback()
# 第五步:关闭连接
finally:
conn.close()
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/215926.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • 移动APP漏洞自动化检测平台建设

    移动APP漏洞自动化检测平台建设前言:本文是《移动APP客户端安全笔记》系列原创文章中的第一篇,主要讲的是企业移动APP自动化漏洞检测平台建设,移动APP漏洞检测发展史与前沿技术,APP漏洞检测工具与平台,以及笔者的一些思考。希望能对移动App自动化漏洞检测感兴趣的同学有所帮助,限于笔者技术水平与文章篇幅,有些内容暂没有逐一详细分析,后续我争取多学习多分享,在此也欢迎大家指点和交流。一、国内AndroidApp漏洞检测

  • iocomp控件与iocomp控件使用教程[通俗易懂]

    iocomp控件与iocomp控件使用教程[通俗易懂]WelcometotheIocompPlotPackManual.Thismanual,inadditiontoourhelpfilesandexamplesourcecodeprojects,providesafullsuiteofdocumentationforunderstandinghowourPlotPackcomponentsareconstructed,operate,andareusedtoenhancethe

  • JS取整数、取余数的方法[通俗易懂]

    JS取整数、取余数的方法[通俗易懂]1.丢弃小数部分,保留整数部分parseInt(5/2)2.向上取整,有小数就整数部分加1Math.ceil(5/2)3,四舍五入.Math.round(5/2)4,取余6%45,向下取整Math.floor(5/2)Math对象的方法FF:Firefox,N:Netscape,IE:InternetExplorer方法描述FF…

  • RBF神经网络实验原理_神经网络多元拟合

    RBF神经网络实验原理_神经网络多元拟合RBF神经网络及拟合实例RBF神经网络介绍RBF神经网络结构RBF神经网络算法RBF神经网络逼近算法采用RBF神经网络逼近非线性函数神经网络逼近结果代码如下RBF神经网络介绍RBF神经网络结构径向基函数(RadialBasisFunction,RBF)神经网络是一种单隐含层的三层前馈神经网络,网络结构如下图所示RBF神经网络模拟了人脑中局部调整,相互覆盖接受域(或者说感受域,ReceptiveField)的神经网络结构。与BP神经网络相同,研究人员已经证明RBF神经网络能够以任何精度逼近任

  • pytest的使用_新代子程序重复调用

    pytest的使用_新代子程序重复调用Pytest执行用例规则Pytest在命令行中支持多种方式来运行和选择测试用例1.对某个目录下所有的用例pytest2.对模块中进行测试pytesttest_mod.py3.对文件夹进行

  • pytest的使用_pytest测试框架从入门到精通

    pytest的使用_pytest测试框架从入门到精通Pytest执行用例规则Pytest在命令行中支持多种方式来运行和选择测试用例1.对某个目录下所有的用例pytest2.对模块中进行测试pytesttest_mod.py3.对文件夹进行

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号