前文:MySql数据库基本概念

数据库

DataBase(数据库),存储数据的仓库。

第一方或第三方提供的图形化界面的客户端(DBeaver,Mariadb)

在Mysql中创建若干个数据库,每个数据库用于一个项目。

每个数据库中又可以创建多个表,表是用于保存一组数据的。

DQL 数据查询语言 SELECT  对表中的数据进行查询的语言。

Mysql 数据库实战-建库-建表-查多表

学生表、教师表、课程表、分数表、各种查询实例43

 #使用库
use test_job;/*查看表*/
show tables;-- 查看所有数据库 --
show databases;create table teacher(
sno char(10) primary key,
name varchar(20)
);
show create table student ;create table teacher(
tno char(10) primary key,
tname varchar(20)
);
show create table teacher;create table course(
cno char(10),
cname varchar(20),
tno char(20)
);#查看已有表
show tables;
show create table course;
create table score(
sno char(10),
cno char(10),
score double(4,2)
);insert into student values('s001','张三',23,'男');
insert into student values('s002','赵美',24,'女');
insert into student values('s004','王五',22,'男');
insert into student values('s005','李军',22,'男');
insert into student values('s026','李军',21,'男');
commit;
insert into teacher values('t001','张老实');
insert into teacher values('t002','李二哈');
insert into teacher values ('t004', '刘阳');
insert into teacher values ('t023', '刘大');
insert into teacher values ('t005', '谌燕');
insert into teacher values ('t006', '胡明星');
insert into teacher values('t009','张帅');
insert into teacher values('t010','大卫');
insert into teacher values('t011','丽莎');
commit;rename table t_job to test_job;
alter table teacher add gendar varchar(10);
show create table teacher ;
alter table teacher add test varchar(1) first;
alter table teacher add test2 int after sno;
alter table teacher drop test;
alter table teacher drop test2;
alter table teacher change gendar  te int;
alter table teacher change sno tno varchar(10);
create table test(id int);
show create table test;
desc test;
desc teacher;
drop table test;insert into course values ('c001','J2SE','t002');
insert into course values ('c002','Java Web','t002');
insert into course values ('c003','SSH','t001');
insert into course values ('c004','Oracle','t001');
insert into course values ('c005','SQL SERVER 2005','t003');
insert into course values ('c006','C#','t003');
insert into course values ('c007','JavaScript','t002');
insert into course values ('c008','DIV+CSS','t001');
insert into course values ('c009','PHP','t003');
insert into course values ('c010','EJB3.0','t002');
commit;insert into score values('s001','c001',78.9);
insert into score values('s002','c001',90.0);
insert into score values ('s001','c001',78.9);
insert into score values ('s002','c001',80.9);
insert into score values ('s003','c001',81.9);
insert into score values ('s004','c001',60.9);
insert into score values ('s001','c002',82.9);
insert into score values ('s002','c002',72.9);
insert into score values ('s003','c002',81.9);
insert into score values ('s001','c003',59);
insert into score values('s006','c006',66);
insert into score values('s004','c006',78);
insert into score values('s002','c003',62);
commit;
desc score;
# 1、查询“c001”课程比“c002”课程成绩高的所有学生的学号;
select    *from
(select    * from    score where    cno = 'c001')a,
(select    * from score where cno = 'c002')b
where a.sno = b.sno and a.score>b.score;# 2、查询平均成绩大于60 分的同学的学号和平均成绩;
select sno,avg(score)
from score group by sno
having avg(score)>60;#3、查询所有同学的学号、姓名、选课数、总成绩;
select b.sno,b.ss,b.cc,s.name from
(select * from student)s,
(select sno,sum(score) ss,count(cno) cc from score group by sno)b
where s.sno=b.sno;#4、查询姓“刘”的老师的个数;
select count(*)
from teacher
where tname like '刘%';#5、查询没学过“谌燕”老师课的同学的学号、姓名;
select stu.sno ,stu.name  from student stu where sno not in(
select distinct s.sno from score s where s.cno in(
select cno from course c left join teacher t on c.tno=t.tno where t.tname='谌燕'));
# what is distinct? #6、查询学过“c001”并且也学过编号“c002”课程的同学的学号、姓名;
select * from student where sno in (
select distinct a.sno from
(select * from score) a,
(select * from score) b
where  a.cno ='c001' and b.cno = 'c002' and a.sno=b.sno
);#what is left join
#7、查询学过“谌燕”老师所教的所有课的同学的学号、姓名;
select stu.sno , stu.name from student stu where sno in(
select distinct s.sno from score s where s.cno in(
select cno from course c left join teacher t on c.tno = t.tno where t.tname='谌燕'
)
)
#8、查询课程编号“c002”的成绩比课程编号“c001”课程低的所有同学的学号、姓名;
select s.sno , s.name from student s where sno in (
select distinct a.sno from
(select * from score) a,
(select * from score) b
where  a.cno ='c001' and b.cno = 'c002' and a.sno=b.sno and a.score < b.score
);#9、查询所有课程成绩小于60 分的同学的学号、姓名;
select s.sno ,s.name from student s where sno in(
select distinct a.sno from
(select * from score) a
where a.score < 60
)#10、查询没有学全所有课的同学的学号、姓名;]
select s.sno,s.name,count(s1.cno)from student s
join (select * from score) s1
on s.sno=s1.sno group by s.sno,s.name having count(s1.cno)<(select count(cno)from course);#11、查询至少有一门课与学号为“s001”的同学所学相同的同学的学号和姓名;
select s.sno ,s.name from student s where sno in (
select sno from(
select sno from score where cno in(
select cno from score where sno='s001')
) t where t.sno<>'s001'
)
#12、查询至少学过学号为“s001”同学所有一门课的其他同学学号和姓名;
select * from score sc
left join student st
on st.sno=sc.sno
where sc.sno<>'s001'and sc.cno in(select cno from score where sno='s001')#13、把“SC”表中“谌燕”老师教的课的成绩都更改为此课程的平均成绩;
#平均成绩的值
select avg(c1.score) from score c1
where c1.cno in(select cno from course a,teacher b where a.tno=b.tno and b.tname='谌燕');
#更新无效
update score c1 set c1.score=(select avg(c1.score) score from teacher t,course c where t.tno=c.tno and t.tname='谌燕' and c1.cno=c.cno group by c1.cno)
where c1.cno in(select cno from course a,teacher b where a.tno=b.tno and b.tname='谌燕');#14、查询和“s001”号的同学学习的课程完全相同的其他同学学号和姓名;
#输出学号select * from score s1where sno<>'s001'and cno in (select cno from score where sno='s001')
group by sno having count(s1.cno)=(select count(*) from score where sno='s001');#15、删除学习“谌燕”老师课的SC 表记录;
#有效
delete from score where score.cno in(
select cno from course c
left join teacher t on c.tno = t.tno
where t.tname = '谌燕'
)#16、向SC 表中插入一些记录,这些记录要求符合以下条件:没有上过编号“c002”课程的同学学号、“c002”号课的平均成绩;
#有效
insert into score(sno,cno,score)
select distinct s1.sno,s.cno,(select avg(score) from score where cno='c002') from student s1,score s where s1.sno not in(
select sno from score s2 where s1.sno=s2.sno and cno='c002'
)and s.cno='c002';#what is group by
#17、查询各科成绩最高和最低的分:以如下形式显示:课程ID,最高分,最低分
select cno 课程ID ,max(score) 最高分,min(score)最低分 from score group by cno;#18、按各科平均成绩从低到高和及格率的百分数从高到低顺序
select cno,avg(score),sum(case when score>=60 then 1 else 0 end)/count(*) as 及格率
from score group by cno
order by avg(score) , 及格率 desc#19、查询不同老师所教不同课程平均分从高到低显示
select t.tno,c.cno,avg(score) from score sc, course c,teacher t
where sc.cno=c.cno and c.tno=t.tno
group by c.cno
order by avg(score) desc#20、统计列印各科成绩,各分数段人数:课程ID,课程名称,[100-85],[85-70],[70-60],[ <60]
#无效
select sc.cno,c.cname,
sum(case  when score between 85 and 100 then 1 else 0 end) AS '[100-85]',
sum(case  when score between 70 and 85 then 1 else 0 end) AS "[85-70]",
sum(case  when score between 60 and 70 then 1 else 0 end) AS "[70-60]",
sum(case  when score <60 then 1 else 0 end) AS "[<60]"
from score sc, course c
where  sc.cno=c.cno
group by sc.cno ,c.cname;#21、查询各科成绩前三名的记录:(不考虑成绩并列情况)
#无效
select * from score (select sno,cno,score
row_number() over (partition by cno order by score desc) rn from score
) where rn<4#22、查询每门课程被选修的学生数
select cno ,count(sno) from score group by cno;#23、查询出只选修了一门课程的全部学生的学号和姓名
select s.sno, s.name, count(s1.cno) from student s
left join score s1
on s1.sno = s.sno group by s.name ,s1.sno having count(cno)=1#24、查询男生、女生人数
select sex ,count(*) from student group by sex#25、查询姓“张”的学生名单
select * from student s where s.name like '张%'#26、查询同名同性学生名单,并统计同名人数
select s.name , count(*) from student s group by  s.name having count(*)>1#27、1981 年出生的学生名单(注:Student 表中Sage 列的类型是number)
#select * from student t where to char(sysdate,'yyyy')-sage =1981#28、查询每门课程的平均成绩,结果按平均成绩升序排列,平均成绩相同时,按课程号降序排列
select cno,avg(score) from score group by cno order by avg(score)asc,cno desc;#29、查询平均成绩大于85 的所有学生的学号、姓名和平均成绩
select st.sno,st.name,avg(score) from student st
left join score s1
on s1.sno=st.sno
group by st.sno,st.name having avg(s1.score)>80;#30、查询课程名称为“数据库”,且分数低于60 的学生姓名和分数
select st.name,s1.score from student st,score s1,course c
where st.sno=s1.sno and s1.cno=c.cno and c.cname='J2SE' and s1.score<80
#31、查询所有学生的选课情况;
select st.sno, st.name ,c.cname from student st,score sc, course c
where sc.sno=st.sno and sc.cno = c.cno#32、查询任何一门课程成绩在70 分以上的姓名、课程名称和分数;
select st.sno, st.name ,c.cname, sc.score from student st,score sc, course c
where sc.sno=st.sno and sc.cno = c.cno and sc.score>70#33、查询不及格的课程,并按课程号从大到小排列
select sc.sno,c.cname,sc.score from score sc,course c
where sc.cno=c.cno and sc.score<70
order by sc.cno desc;#34、查询课程编号为c001 且课程成绩在80 分以上的学生的学号和姓名;
select s.sno ,s.name , sc.score from student s ,score sc
where sc.sno = s.sno and sc.cno = 'c001' and sc.score >80#35、求选了课程的学生人数
select count(sno) from score;#36、查询选修“谌燕”老师所授课程的学生中,成绩最高的学生姓名及其成绩
select st.name,sc.score ,c.cname from student st,score sc ,course c,teacher t
where st.sno=sc.sno and sc.cno=c.cno and c.tno=t.tno and t.tname='李二哈'
and sc.score=(select max(score) from score where sc.cno=c.cno)#37、查询各个课程及相应的选修人数
select sc.cno,count(sc.sno) from score sc group by sc.cno#38、查询不同课程成绩相同的学生的学号、课程号、学生成绩
select a.* from score a ,score b where a.score=b.score and a.cno<>b.cno
# what is partition #39、查询每门功课成绩最好的前两名
#无效
select * from (
select sno,cno,score, row_number() over(partition by cno order by score desc) my_rn from score t)
where my_rn<=1
#40、统计每门课程的学生选修人数(超过10 人的课程才统计)。要求输出课程号和选修人数,查询结果按人数降序排列,若人数相同,按课程号升序排列
select cno,count(sno) from score group by cno
having count(sno)>2
order by count(sno) desc,cno asc;#41、检索至少选修两门课程的学生学号
select sno from score group by sno
having count(sno)>1#42、查询全部学生都选修的课程的课程号和课程名
select distinct(c.cno),c.cname from course c ,score  sc
where sc.cno=c.cno#43、查询没学过“谌燕”老师讲授的任一门课程的学生姓名
select st.name from student st
where st.sno not in
(select distinct sc.sno from score sc,course c,teacher t
where sc.cno=c.cno and c.tno=t.tno and t.tname='谌燕')#44、查询两门以上不及格课程的同学的学号及其平均成绩
select sno,avg(score)from score
where sno in(select sno from score sc where sc.score<80
group by sno having count(sno)>1)
group by sno#45、检索“c004”课程分数小于60,按分数降序排列的同学学号
select sno ,score from score where cno='c001'and score<90 order by score desc;#46、删除“s002”同学的“c001”课程的成绩
delete from score where sno='s002' and cno='c001';

创造价值,乐哉分享

Mysql 数据库实战-建库-建表-查多表相关推荐

  1. mysql数据库中到底能建多少张表?(单实例下单个库)

    单实例mysql数据库中到底能建多少张表? 业务两个同学今天就这个问题过来探讨,他们的诉求是: 1. 一个用户的表要全部放到一个数据库中. 2. 预计1000个用户每个用户初步规划1000张表. 这1 ...

  2. MySQl建库建表及增删改查

    通过可视化工具建库建表 创建数据库 CREATE DATABASE studb2 CHAR SET utf8; 切换数据库(使用use 将数据库切换到 studb2) USE studb2 ; 在st ...

  3. mysql中数据库怎么建库建表

    数据库操作命令 本博客记录了,创建数据库,数据表的最基本操作,手把手教你如何入门Mysql,基础的创建数据库,数据表的注意事项,以及一些禁忌. 首先数据库是不区分大小写的,但是它对空格已经中文下的字符 ...

  4. mysql exercise --- one 建库建表练习参考

    建库建表操作练习 1 .表名 User Name Tel Content Date 张三 133******** 大专毕业 2006-10-11 张三 136******** 本科毕业 2006-10 ...

  5. 数据库的实例化操作——员工信息的查询——建库建表录入信息(一)

    数据库的实例化操作--建库建表录入信息. 本文章共分为三部分,通过建立员工部门的信息来熟练掌握数据库的单表查询.多表查询. 员工信息如下: Dept表(部门) Dept部门表结构 字段 类型 描述 d ...

  6. Android数据库建库建表的几种方法

    方法一:SQLite数据库的建立 SQLiteDatabase database;public UserDao(Context context){//1.1建库database=context.ope ...

  7. 数据库1-SQL server建库建表操作

    菜鸟学习数据库(一) 这是一个目录 菜鸟学习数据库(一) (一)每贴一句 (二)开始 (1)进入MSSMS软件 1.进入软件 2.点击新建查询: 3.新建的查询界面 (2)开始sql语言建库建表 1. ...

  8. 通过flyway实现项目启动自动建库建表

    目录 前言 代码实现 添加依赖 sql文件命名方式也有讲究 代码配置 启动建库 前言 我之前研究过一个开源论坛项目,pybbs,他代码下载下来直接启动会自动建库建表,所以我拿过来研究一下(不难),这样 ...

  9. SQL Server建库建表命令

    数据库建库建表 1.直接右键数据库,选择新建数据库: 2.通过新建查询,输入命令建库建表. 使用CREATE DATABASE创建数据库school. 数据文件的逻辑名称自定义,需要注意的点是主数据文 ...

最新文章

  1. 【Python】数组索引到底怎么整?
  2. 复现经典:《统计学习方法》第 5 章 决策树
  3. java足球经理2010下载_apk是什么文件?apk文件怎么打开?
  4. LeetCode Hot100 ---- 二叉树专题
  5. 【Poj1017】Packets
  6. 一文教你如何深入机器学习,从编程基础到完整的项目实战
  7. QTP11 5发布,改名UFT
  8. FileZilla Server多实例监听
  9. 网易云音乐实时数仓2.0进阶之路
  10. mtr--- 网络诊断工具
  11. 利用python进行prosper贷款数据EDA分析(一)
  12. 灿烂星空,你是真的英雄
  13. 产品|B站2月份创作者分析
  14. 最新5G时代投资区块链源码全修复版+对接免签支付+搭建视频
  15. 用vim编辑器在行首添加行号、序列号
  16. gsoap linux 编译,gSOAP嵌入式linux下的移植与程序开发
  17. 各种手机刷机包 救砖包 root工具
  18. 第一章.纺锤线和风高浪大线
  19. cad自定义菜单cui_cad cui 2017经典菜单文件下载|cui文件(cad经典菜单)最新版_ - 极光下载站...
  20. 2009年国内外免费杀毒软件大搜罗

热门文章

  1. 学习Zynq笔记(1):7020开发平台简介
  2. 使用OAuth2的SSO分析
  3. 520被女朋友三番两次拉黑后,我用 Python 写了个“舔狗”必备神器
  4. 钉钉小程序的开发入门【亲自调试】
  5. 数据库候选关键词怎么求_数据库中,什么是超关键字,候选关键字,主关键字?麻烦举例说明...
  6. 信而泰测试仪之 TeleATT软件 模拟 路由性能测试
  7. 【牛顿迭代逼近】求根号2的快速方法
  8. Codeforces1422 F.Boring Queries(根号分治+线段树+可持久化线段树)
  9. 使用lap.lapjv实现线性分配(我主要用来作为匈牙利算法的实现)
  10. OSChina 周一乱弹 ——强行把她拖到家里洗了个澡