mysql数据库上机题_MYSQL数据库练习题操作(select)大全

1、 查询Student表中的所有记录的Sname、Ssex和Class列。select sname,ssex,class fromstudent;2、查询教师所有的单位即不重复的Depart列。select distinct depart fromteacher;3、 查询Student表的所有记录。select * fromstudent;4、 查询Score表中成绩在60到80之间的所有记录。select * from score where degree>60 and degree<80;5、 查询Score表中成绩为85,86或88的记录。select * from score where degree in (85,86,88);6、 查询Student表中“95031”班或性别为“女”的同学记录。select * from student where class like '95031' or ssex like '女';7、 以Class降序查询Student表的所有记录。select * from student order by class desc;8、 以Cno升序、Degree降序查询Score表的所有记录。select * from score order by cno asc , degree desc;9、 查询“95031”班的学生人数。select count(*) from student group byclass;10、 查询Score表中的最高分的学生学号和课程号。(子查询或者排序)select * from score order by degree desc limit 1;

下面这个使用的连接查询select max(degree) fromscore #先写出score的最高分select * from score where degree = (select max(degree) fromscore);select sno,cno from score where degree = (select max(degree) fromscore);11、 查询每门课的平均成绩。select cno,count(*),avg(degree) from score group by cno having count(*); 多条查询12、查询Score表中至少有5名学生选修的并以3开头的课程的平均分数。select cno,avg(degree) from score where cno like '3-105' and cno like '3%';select * from score group bydegree;select cno,count(*),avg(degree) from score where cno like '3%' group by cno having count(*) >= 5;select cno,count(*),avg(degree) from score where cno like '3%' group by cno having count(*) >= 5;13、查询分数大于70,小于90的Sno列。select sno,degree from score where degree>70 and degree<90;select group_concat(sno) from score where degree>70 and degree<90;14、查询所有学生的Sname、Cno和Degree列。(多表查询)

student.sname,course.cno,score.degreeselect student.sname,course.cno,score.degree fromstudent,course,score;select sname,cno,degree from student join score on student.sno =score.sno;15、查询所有学生的Sno、Cname和Degree列。

student.sno,course.cname,score.degreeselect student.sno,course.cname,score.degree fromstudent,course,score;select sno,cname,degree from score join course on course.cno =score.cno;16、查询所有学生的Sname、Cname和Degree列。

student.sname,course.cname,score.degree;select student.sname,course.cname,score.degree fromstudent,course,score;select student.sname,course.cname,score.degree from student,course,score where sname between '李军' and '王丽';select student.sname,cname,degree from student join score on student.sno = score.sno join course on course.cno =score.cno;17、查询“95033”班学生的平均分。select sno from student where class = '95033';select avg(degree) from score where sno in(select sno from student where class = '95033');18、查询选修“3-105”课程的成绩高于“109”号同学成绩的所有同学的记录。select degree from score where sno = '109' and cno = '3-105';select sno,degree from score where degree > (select degree from score where sno = '109' and cno = '3-105');19、查询score中选学多门课程的同学中分数为非最高分成绩的记录。select cno from score where (cno = '3-245' and cno = '3-105') or (cno = '3-245' and cno = '6-166') or (cno = '3-245' and cno = '6-166'); 这是个错误的select * from Score a where Sno in (select Sno from Score group by Sno having count(*)>1 ) and Degree not in (select max(Degree) from Score b where b.Cno =a.Cno)select * from Score a where Sno in (select Sno from Score group by Sno having count(*)>1 ) and Degree not in (select max(Degree) from Score a where Sno in (select Sno from Score group by Sno having count(*)>1))20、查询成绩高于学号为“109”、课程号为“3-105”的成绩的所有记录。select degree from score where sno = '109' and cno = '3-105';select * from score where degree > (select degree from score where sno = '109' and cno = '3-105');21、查询和学号为108的同学同年出生的所有学生的Sno、Sname和Sbirthday列。select sbirthday from student where sno = '108';select sno,sname,sbirthday from student where sbirthday = (select sbirthday from student where sno = '108');22、查询“张旭“教师任课的学生成绩(姓名)。select tno from teacher where tname = '张旭'; #找出教师编号select cno from course where tno = (select tno from teacher where tname = '张旭'); #找出课程编号select sno,degree from score where cno = (select cno from course where tno = (select tno from teacher where tname = '张旭'));select student.sno,degree,sname from score join student on score.sno = student.sno where student.sno in (select sno from score where cno = (select cno from course where tno = (select tno from teacher where tname = '张旭')));23、查询考计算机导论的学生成绩select cno from course where cname = '计算机导论'; #找到课程编号3-105

select sno,degree from score where cno = (select cno from course where cname = '计算机导论');24、查询李诚老师教的课程名称select tno from teacher where tname = '李诚'; ##找到教师编号select cname from course where tno = (select tno from teacher where tname = '李诚');25、教高等数学的老师是哪个系的select tno from course where cname = '高等数学';select depart from teacher where tno = (select tno from course where cname = '高等数学');26、查询选修某课程的同学人数多于5人的教师姓名。select cno,count(*) from score group by cno having count(*)>=5; #找出课程编号select tno from course where cno = (select cno from score group by cno having count(*)>=5);select tname from teacher where tno = (select tno from course where cno = (select cno from score group by cno having count(*)>=5));27、查询95033班和95031班全体学生的记录。select * from student group by class having count(*);select * from student order by class desc;28、查询成绩表中存在有85分以上成绩的课程Cno.select cno,degree from score where degree>85;29、查询出“计算机系“教师所教课程的成绩表。select tno,tname from teacher where depart = '计算机系'#查出教师编号select cno from course where tno in (select tno from teacher where depart = '计算机系'); #查出课程编号select sno,cno,degree from score where cno in (select cno from course where tno in (select tno from teacher where depart = '计算机系'));30、查询选修编号为“3-105”且成绩高于选修编号为“3-245”课程的同学的 Cno、Sno和Degree.select max(degree) from score where cno = '3-245'; #先把选修编号为3-245课程的同学的最高成绩查询出来select cno,sno,degree from score where cno = '3-105' and degree > (select max(degree) from score where cno = '3-245');31、查询所有教师和同学的name、sex和birthday.select tname as name,tsex as sex,tbirthday as birthday fromteacherunion

select sname,ssex,sbirthday fromstudent;32、查询所有“女”教师和“女”同学的name、sex和birthday.select tname as name,tsex as sex,tbirthday as birthday from teacher where tsex = '女'

union

select sname,ssex,sbirthday from student where ssex = '女';33、查询所有成绩比3-105课程平均成绩低的同学的成绩表。select avg(degree) from score where cno = '3-105';select degree from score where degree < (select avg(degree) from score where cno = '3-105');34、查询所有任课教师的Tname和Depart.select tname,depart fromteacher;35、查询所有未讲课的教师的Tname和Depart.select tno from course group bytno; #找出有课的老师的编号select tname,depart from teacher where not exists(select tno from course group bytno);36、查询至少有2名男生的班号。#####################################################3

select ssex,class from student where ssex = '男' group byclass;select class from student where exists ((select ssex,class from student where ssex = '男' group by class) * 2);37、查询Student表中不姓“王”的同学记录。select sname from student where sname like '王%'

select sname from student where sname not in (select sname from student where sname like '王%');38、查询Student表中每个学生的姓名和年龄。selectsname,select floor(datediff(curdate(),@birthday)/365.2422)39、查询Student表中最大和最小的Sbirthday日期值。select max(sbirthday) as '最大日期' , min(sbirthday) as '最小日期' fromstudent;update student set sbirthday = '1995-07-11' where sno = '108';update student set sbirthday = '1820-05-01' where sno = '105';40、以班号和年龄从大到小的顺序查询Student表中的全部记录。select * from student order by class desc,sbirthday desc;41、查询“男”教师及其所上的课程。select tno from teacher where tsex = '男';select cname from course where tno in (select tno from teacher where tsex = '男');42、查询最高分同学的Sno、Cno和Degree列。select max(degree) fromscoreselect score.sno,cno,degree fromstudentjoinscoreon student.sno =score.snowhere degree = (select max(degree) fromscore);43、查询和“李军”同性别的所有同学的Sname.select ssex from student where sname = '李军';select sname from student where ssex = (select ssex from student where sname = '李军');44、查询和“李军”同性别并同班的同学Sname.select class from student where sname = '李军';select sname from student where ssex = (select ssex from student where sname = '李军') and class = (select class from student where sname = '李军');45、查询所有选修“计算机导论”课程的“男”同学的成绩表。select cno from course where cname = '计算机导论'; #根据课程表找到课程编号select sno from score where cno = (select cno from course where cname = '计算机导论'); #根据课程编号找到成绩表里面的学生编号select sname from student where sno in (select sno from score where cno = (select cno from course where cname = '计算机导论')) and ssex = '男';

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/445848.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Java中<? super T>和List<? extends T>的区别

Java中<? super T>和List<? extends T>的区别 <? extends T> 下面通配符声明List<? extends Number> foo3的赋值式是合法的&#xff1a; List<? extends Number> foo3 new ArrayList<Number>(); // Number "extends" …

mysql书写规则_每天10分钟带你学会MySQL(二)SQL语句的基本书写规则

SQL语句时必须要遵守一些规则。这些规则都非常简单&#xff0c;接下来就让我们逐一认识一下吧。1&#xff0c;SQL语句以分号(;)结尾。■SQL语句要以分号(;)结 尾一条SQL语句可以描述一个数据库操作。在RDBMS当中&#xff0c;SQL语句也是逐条执行的。众所周知&#xff0c;我们在…

《剑指Offer》52:两个链表的第一个公共节点

题目 输入两个链表&#xff0c;找出它们的第一个公共节点。 public static class ListNode{public int val;public ListNode next;public ListNode(int val) {this.val val;} }分析 首先遍历两链表的长度。在第二次遍历的时候&#xff0c;在较长的链表上先走若干步&#xf…

mysql win 64_win10下装mysql-5.7.18-winx64

步骤1官网下载地址&#xff1a;https://dev.mysql.com/downloads/mysql/选择手动安装版&#xff1a;解压到D盘mysql文件夹下&#xff1a;比以往的版本里缺少了两个.ini文件&#xff0c;直接copy过来&#xff0c;进行修改,my.ini&#xff1a;[client]port3306default-character-…

《剑指Offer》62:圆圈中最后剩下的数字(约瑟夫环)

题目 0,1,2…,n-1这n个数字排成一个圆圈&#xff0c;从数字0开始&#xff0c;每次从这圆圈你删除第m个数字。求出这个圆圈里剩下的最后一个数字。 例如&#xff0c;0、1、2、3、4这5个数字组成一个圆圈&#xff0c;从数字0开始每次删除第3个数字&#xff0c;则删除的前4个数字…

mysql数据库老是被锁怎么解决_Mysql数据库全局锁是如何引起的,如何解决?

2019-01-08 回答乐观锁与悲观锁不同的是&#xff0c;它是一种逻辑上的锁&#xff0c;而不需要数据库提供锁机制来支持当数据很重要&#xff0c;回滚或重试一次需要很大的开销时&#xff0c;需要保证操作的acid性质&#xff0c;此时应该采用悲观锁而当数据对即时的一致性要求不高…

我们边吃曲奇边聊——Cookie与Session那些事

Cookie与Session分别是什么&#xff1f; HTTP Cookie&#xff08;也叫 Web Cookie 或浏览器 Cookie&#xff09;是服务器发送到用户浏览器并保存在本地的一小块数据&#xff0c;它会在浏览器下次向同一服务器再发起请求时被携带并发送到服务器上。 通常&#xff0c;它用于告知…

mysql 不能添加外键 1215_MySQL错误1215:无法添加外键约束

我正在尝试将新模式转发工程到我的数据库服务器上&#xff0c;但是我不知道为什么会收到此错误。我试图在这里搜索答案&#xff0c;但是我发现的所有内容都说是将db引擎设置为Innodb或确保要用作外键的键是它们自己表中的主键。如果我没记错的话&#xff0c;我都做过这两件事。…

JMH初体验

什么是JMH JMH是 Java Microbenchmark Harness 的缩写。中文意思大致是 “JAVA 微基准测试套件”。 基准测试是指通过设计科学的测试方法、测试工具和测试系统&#xff0c;实现对一类测试对象的某项性能指标进行定量的和可对比的测试。——百度百科 为什么要使用 JMH 基准测试…

java map取第一个元素_Java Set接口 Map 与枚举

Set接口概述一个不包含重复元素的 collection。更确切地讲&#xff0c;set 不包含满足 e1.equals(e2) 的元素对 e1 和 e2&#xff0c;并且最多包含一个 null 元素特点Set接口是无序的 Set 是继承于Collection的接口。它是一个不允许有重复元素的集合。Set可以存储null值,但是nu…

Python中yield简单用法

Python中yield简单用法 你或许知道带有yield的函数在Python中被称之为generator&#xff0c;那何为 generator&#xff1f; 我们暂时抛开generator&#xff0c;先从一个常见编程题目开始&#xff0c;循序渐进了解yield的概念。 生成Fibonacci数列 Fibonacci数列是一个经典递…

js 用下标获取map值_js map方法处理返回数据,获取指定数据简写方法

map方法处理返回数据&#xff0c;获取指定数据简写方法前言后端返回数据为数组列表时&#xff0c;通常比较全面&#xff0c;包含了很多不需要的数据&#xff0c;可以通过 map 方法处理返回数据&#xff0c;筛选出想要的数据例如// 返回数据res [{id: 1,name: zhangsan,age: 16…

《Python Cookbook 3rd》笔记汇总

文章目录一、数据结构二、字符串和文本三、数字、日期和时间四、迭代器与生成器五、文件与IO一、数据结构 标题关键词1.1&#xff1a;拆分序列后赋值给多个变量可迭代对象、拆分赋值1.2&#xff1a;拆分任意长可迭代对象后赋值给多个变量可迭代对象、拆分赋值、星号表达式1.3&…

mysql hp ux_hp ux apa 切换

(HP-UX Only) OR - 1 heartbeat network using APA with 2 trunk members (HP-UX Only) OR - 1 heartbeat network with serial line (HP-UX Only) OR......一、 概述 HP 的 APA 软件提供两种网卡冗余切换模式,用以实现网络高可用性...0x000000000000 hp_apa HP-UX 11i v3 Prer…

Python中[:]与[::]的用法

Python中[:]与[::]的用法 概述 [:]与[::]语法是通用序列操作&#xff08;Common Sequence Operations&#xff09;其中的两个。用[:]或[::]对多数序列类型&#xff08;可变的或不可变的&#xff09;&#xff08;如字符串、列表等&#xff09;序列中元素进行截取。 [:]的用法…

mysql redis 中间件_Docker快速搭建Mysql社区版,Redis,MongoDb、MQ等等中间件。

一&#xff1a;安装docker社区版。Centos系列(最好用7以上的版本&#xff0c;docker需要3.1以上的linux内核版本)sudo yum install docker-ce docker-ce-cli containerd.iosudo systemctl start dockersudo docker run hello-world如果你敲docker info需要root密码&#xff0c;…

JavaScript中String的slice(),substr(),substring()三者区别

JavaScript中String的slice()&#xff0c;substr()&#xff0c;substring()三者区别 共同之处 从给定的字符串中截取片段&#xff0c;并返回全新的这片段的字符串对象&#xff0c;且不会改动原字符串。 具体不同之处 slice() str.slice(beginIndex[, endIndex])参数描述be…

pythontuple数据类型_数据类型-元组Tuple

Python Tuple用于存储不可变python对象的序列。元组类似于列表&#xff0c;因为可以改变列表中存储的项的值&#xff0c;而元组是不可变的&#xff0c;并且不能改变存储在元组中的项的值。元组可以写成用小括号括起来的逗号分隔值的集合。元组可以定义如下。T1 (101, "Ay…

《剑指Offer》24:反转链表

题目 定义一个函数&#xff0c;输入一个链表的头节点&#xff0c;反转链表并输出反转后链表的头节点。链表节点定义如下&#xff1a; public static class ListNode{public int val;public ListNode next;public ListNode(int val) {this.val val;} }分析 方法一&#xff1…

python两个for循环为什么第二个循环里值不变_两个for循环,第二个只在第一个迭代python上执行...

我是一个pythonnoob&#xff0c;我试图比较两个文件中的行之间的值&#xff0c;如果行在第二个文件中&#xff0c;则输出“line name”&#xff0c;然后输出1&#xff1b;如果第二个文件中缺少该行&#xff0c;则输出0。第一次迭代返回1&#xff0c;因为该行在第二个文件中&…