create table student (
 sno int primary key,
 sname char(20),
 sex char(2),
 birthday datetime,
 class int
 )
create table teacher (
 tno int primary key,
 tname char(20),
 sex char(2),
 birthday datetime,
 prof char(10),
 depart char(20)
)
create table course (
 cno char(20) primary key,
 cname char(20),
 tno int foreign key references teacher(tno)
)
create table score (
 sno int foreign key references student(sno),
 cno char(20) foreign key references course(cno),
 degree int
)
insert into student values(108,'曾华','男','09/01/1977',95033);
insert into student values(105,'匡明','男','10/02/1975',95031);
insert into student values(107,'王丽','女','01/23/1976',95033);
insert into student values(101,'李军','男','02/20/1976',95033);
insert into student values(109,'王芳','女','02/10/1975',95031);
insert into student values(103,'陆军','男','06/03/1974',95031);
insert into teacher values(804,'李诚','男','12/02/1958','副教授','计算机系');
insert into teacher values(856,'李旭','男','03/12/1969','讲师','电子工程系');
insert into teacher values(825,'王萍','女','05/05/1972','助教','计算机系');
 
insert into teacher values(831,'刘冰','女','08/14/1977','助教','电子工程系');
 
insert into course values('3-105','计算机导论',825);
insert into course values('3-245','操作系统',804);
insert into course values('6-166','数字电路',856);
insert into course values('9-888','高等数学',825);
 
insert into score values(103,'3-245',86);
 
insert into score values(109,'3-245',68);
insert into score values(105,'3-245',75);
insert into score values(103,'3-105',92);
 
insert into score values(105,'3-105',88);
 
insert into score values(109,'3-105',76);
insert into score values(101,'3-105',64);
insert into score values(107,'3-105',91);
insert into score values(108,'3-105',78);
insert into score values(101,'6-166',85);
insert into score values(107,'6-166',79);
insert into score values(108,'6-166',81 );
 
drop table student
 drop table teacher
 drop table course
 drop table score
--1、列出student表中所有记录的
--sname、sex和class列。
select sname,sex,class from student
--2、显示教师所有的单位即不重复的depart列。
--select distinct depart from teacher
--3、显示学生表的所有记录。
--select * from student
--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.显示   表中   班或性别为女的同学的记录
--select *from student where class='95033'and sex='女'
--7.以class降序显示   表中所有记录
-- select * from student order by class desc
--8.以cno升序 degree降序显示   表中所有记录
-- select * from student order by cno asc,degree desc
--9.显示  班的学生人数
--select COUNT(*),COUNT(sno)from student where class='95033'
--10.显示score表中的最高分的学生学号和课程号
--select max(degree),nim(degree),avg(degree) from score
--select * from score where degree=(select max(degree) from score)
--11.显示“3-105”号课程的平均分
--12.显示score表中至少有5名学生选修并以3开头的课程号的平均分数
--select cno,count(*),AVG(degree) from score where cno like '3%' group by cno having count(cno)>=5
--13.显示最低分大于70,最高分小于90的sno列
--select sno from score group by sno having max(degree)<90 and min(degree)>70
--select sno from score where max(degree)<90 and min(degree)>70
--14.显示所有学生的sname、cno和degree列
--select sname、cno、degree from score,student where student.sno=score.sno
--select sname、cno、degree from score join student on student.sno=score.sno
--15.显示所有学生的 sname,cname 和degree
--select sname,cname,DEGREE from student,score,course where student.sno=score.sno and score.cno=course.cno
--select sname,cname,DEGREE from student join score on student.sno=score.sno join course on score.cno=course.cno
--16.列出“95033”班所选课程的平均分
--select avg(degree) from score where sno in (select sno from student where class='95033')
--17.显示选修"3-105"课程的成绩高于“109”号同学成绩的所有同学的记录
--select * from score where degree>(select degree from score where sno=109 and cno='3-105') and cno ='3-105'
--18.显示score中选修多门课程的同学中分数为非最高分成绩的记录
select * from score where sno in (select sno from score group by sno having count(sno)>1 ) and degree not in (select max(degree) from score group by cno)
--20.显示出和学号“108”号同学同年出生的所有学生的sno、sname、birthday列
--select sno,sname,birthday from student where day(birthday)= (select day(birthday) from student where sno=108)
--21.显示“张旭”老师上课的学生的成绩
--select * from score where cno=(select cno form course where tno=(select tno from teacher where tname='XXX'))
--select tracher.* ,course.* ,score.* from teacher,course,score where teacher.tno=course.tno and course.cno=score.cno and tname='XXX'
--select tracher.* ,course.* ,score.* from teacher join course on teacher.tno=course.tno join score on course.cno=score.cno where tname='XXX'
--22.显示选修某课程的同学人数多余5人的老师姓名
--select tname from teacher where tno in(select tno from course where cno in(select cno from score group by cno having count(*)>=5))
--23.显示“95033”班和“95031”班全体学生的记录
--select * from student where class ='95033' or class='95031'
--24.显示存在有85分以上成绩的课程编号
--select distindt cno from score where degree>85
--     相同的显示一次
--25.显示“计算机系”老师所教课程的成绩表
--select * from score where cno in(select cno from course where tno in(select tno from teacher where depart ='计算机系'))
--27.显示选修编号为“3-105”课程且成绩至少高于“3-245”课程的同学的cno、sno和degree,并按degree从高到低次序排列
--select cno,sno,degree from score where cno='3-105' and degree>any(select degree from c=score where cno='2_245')
--select cno,sno,degree from score where cno='3-105' and degree>(select min(degree) from c=score where cno='2_245')
--28.
--29、列出所有任课老师的tname和depart
--select tname,depart from teacher where tno in(select tno from course)
--30、列出所有未讲课老师的tname和depart
--select tname,depart from teacher where tno not in(select tno from course)
--31、列出所有老师和同学的 姓名、性别和生日。
--select sname,sex,birthday from student  union select tname,sex,birthday from teacher
--*32、检索所学课程包含学生“103”所学课程的学生学号
--select distinct sno  from score x where not exists(select * from score y where y.sno=103 and not exists(select * from score z where z.sno=x.sno and z.cno=y.cno))
--*33、检索选修所有课程的学生姓名
--select sname from student where sno in(select sno from score group by sno having count(*)=     (select count(*) from course))
 
 不一定都对,有错欢迎指正

数据库简单练习 建表+select的更多相关文章

  1. mysql数据库(一):建表与新增数据

    一. 学习目标 理解什么是数据库,什么是表 怎样创建数据库和表(create) 怎样往表里插入数据(insert) 怎样修改表里的数据(update) 怎样删除数据库,表以及数据(delete) 二. ...

  2. 0420-mysql命令(数据库操作层级,建表,对表的操作)

    注意事项: 符号必须为英文. 数据库操作层级: 建表大全: #新建表zuoye1:drop table if exists zuoye1;create table zuoye1(    id int ...

  3. JavaFX程序初次运行创建数据库并执行建表SQL

    在我的第一个JavaFX程序完成安装的时候才突然发现,不能要用这个软件还要手动执行Sql来建表吧? 于是我的想法是在Main程序中执行时检测数据库连接状况,如果没有检测到数据库或者连接异常,那么出现错 ...

  4. Mysql数据库常规操作(建表、查询)

    一.表单操作 1-1.创建表 create table tb_name( id in primary key auto_increment);    1-2.查看表 desc table_name; ...

  5. SQL数据库各种查询建表插入集合-待续持续更新

    创建表 drop table student; DROP table Course; DROP table sc; CREATE TABLE student ( sid integer PRIMARY ...

  6. java中用activiti插件连接mysql数据库,自动建表过程中,在配置mysql架包路径“org.activiti.engine.ActivitiException: couldn't check if tables “

    java中用activiti插件连接mysql数据库,出现错误: org.activiti.engine.ActivitiException: couldn't check if tables are ...

  7. 使用Mysql 5.5数据库Hibernate自动建表创建表出错table doesn't exist

    在mysql 5.0版本以后不支持 type=InnoDB 关键字,需要使用 engine=InnoDB 配置文件方言改成如下即可 <property name="dialect&qu ...

  8. mysql建表设置两个默认CURRENT_TIMESTAMP的技巧

    转载:http://blog.163.com/user_zhaopeng/blog/static/166022708201252323942430/   业务场景: 例如用户表,我们需要建一个字段是创 ...

  9. 64、django之模型层(model)--建表、查询、删除基础

    要说一个项目最重要的部分是什么那铁定数据了,也就是数据库,这篇就开始带大家走进django关于模型层model的使用,model主要就是操纵数据库不使用sql语句的情况下完成数据库的增删改查.本篇仅带 ...

随机推荐

  1. CF1025D Recovering BST

    题意:给定序列,问能否将其构成一颗BST,使得所有gcd(x, fa[x]) > 1 解:看起来是区间DP但是普通的f[l][r]表示不了根,f[l][r][root]又是n4的会超时,怎么办? ...

  2. wps相关问题

    1 总汇 1.1 关闭wps中“我的wps”选项卡 我记得之前的WPS都是可以设置的不启动"我的WPS"的,但是最新版本中好象没有发现这个设置,反正小编是没找到,但是这并不影响我们 ...

  3. Go(02)windows环境搭建和vscode配置

    之前讲述过linux环境下Go语言开发环境搭建,这次简述下windows的搭建以及vscode配置 windows环境搭建 同样去https://studygolang.com/dl下载windows ...

  4. Python数据分析初始(一)

    基础库 pandas:python的一个数据分析库(pip install pandas) pandas 是基于 NumPy 的一个 python 数据分析包,主要目的是为了 数据分析 .它提供了大量 ...

  5. Hadoop基础-MapReduce的Join操作

    Hadoop基础-MapReduce的Join操作 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 一.连接操作Map端Join(适合处理小表+大表的情况) no001 no002 ...

  6. Tomcat——Linux下的安装和配置

    Tomcat在Linux上的安装与配置 以下使用的Linux版本为: Redhat Enterprise Linux 7.0 x86_64,Tomcat版本为tomcat-7.0.54. 1.下载JD ...

  7. 蓝桥杯 算法提高 8皇后·改 -- DFS 回溯

      算法提高 8皇后·改   时间限制:1.0s   内存限制:256.0MB      问题描述 规则同8皇后问题,但是棋盘上每格都有一个数字,要求八皇后所在格子数字之和最大. 输入格式 一个8*8 ...

  8. Android学习笔记——从源码看Handler的处理机制

    可能是出于性能的考虑,Android的UI操作是非线程安全的. 也就是说,如果你在一个新开的线程中直接操作UI是会引发异常的. 但是,Android又规定,不要去阻塞UI线程!否则,轻者引起程序卡顿, ...

  9. scala笔记之惰性赋值(lazy)

    一.lazy关键字简介 lazy是scala中用来实现惰性赋值的关键字,被lazy修饰的变量初始化的时机是在第一次使用此变量的时候才会赋值,并且仅在第一次调用时计算值,即值只会被计算一次,赋值一次,再 ...

  10. 第二篇:服务消费者(rest + ribbon)

    一. ribbon简介 ribbon是一个负载均衡客户端,可以很好的控制http和tcp的一些行为,Feign也用到了ribbon,当你使用@ FeignClient,ribbon自动被应用. Rib ...