数据库表的查询操作实践演练(实验三)

继前两次的实验,本次实验以熟练掌握利用select语句进行各种查询操作:单表查询、多表连接及查询、嵌套查询、集合查询等,巩固数据库查询操作。
下面就跟着小编一起练习吧!
在实验一创建并插入数据的表(Student, Course,SC,Teacher,TC)的基础上,完成以下操作。
(1)将教师‘罗莉'的名字改为‘罗莉莉'。

代码如下:

update Teacher set tname='罗莉莉' where tname='罗莉'

(2)将两个同学(数据自己临时设置,用后即删除)的两门课程的成绩以运行sql程序文件的形式插入score表中。该题用以验证、理解和掌握关系模型的完整性规则;
 插入:

代码如下:

insert into Score(sno,cno,grade) values ('04261006','C003','64')
insert into Score(sno,cno,grade) values('04261007','C004','79')

查询:

代码如下:

select sno 学号,cno 课程号,grade 分数from Score where sno=04261006 or sno=04261007;

删除:

代码如下:

delete from Score where sno=04261006 or sno=04261007;

(3)求每门课的平均成绩,并把结果存入average表(自行设计并创建);

代码如下:

CREATE TABLE average
(
cno CHAR(8),
avscore numeric(5,2),
constraint a1 primary key (cno),
constraint a2 foreign key (cno) references Course(cno),
)
insert into average(cno,avscore)
select distinct cno ,avg(grade) from Score group by cno

(4)将学生“马丽”的年龄改为24;

代码如下:

Update Student set 2014-year(Sbirth) 年龄 where Sname=' 马丽'

(5)将所有学生的szipcode属性列值填补上;

代码如下:

update Student set szipcode='221000'

(6)将average表中的所有课程的平均成绩置零;

代码如下:

update average set avscore='0'

(7)删除average表中的课程号为‘C007'的平均成绩记录;

代码如下:

delete from average where cno='C007'

(8)删除所有average表中平均成绩记录;

代码如下:

delete from average;

(9)建立一个临时学生信息表(tstudent),删除该表中的学号含‘101'的所有学生记录。

代码如下:

create  table  tstudent   ( Sno  char(8)  primary  key,     Sname  varchar(8)  unique ); 
Delete  from  tstudent  where  Sno  like '001011%';

(10)查询全体学生的学号与姓名;

代码如下:

select sno 学号,sname 姓名from Student

(11)查询全体学生的学号、姓名、所属系;

代码如下:

select sno 学号,sname 姓名,sdept 系from Student

(12)查询全体学生的详细记录;

代码如下:

select * from Student

(13)查询全体学生的姓名及其年龄;

代码如下:

select sname 姓名,2014-year(sbirth) 年龄from Student

(14)查询全体学生的姓名、出生年份;

代码如下:

select sname 姓名,year(sbirth) 出生年份from Student

(15)查询所有修过课的学生的学号;

代码如下:

select distinct sno from Score
select distinct student.sno from Student,Score where Student.sno=Score.sno and Score.grade>0 ;

(16)查询“计算机系”班全体学生名单;

代码如下:

select sno,sname from Student where sdept='计算机系'

(17)查询查询所有年龄在23岁以下的学生姓名及其年龄;

代码如下:

select sname 姓名,2014-year(sbirth) 年龄from Student where 2014-year(sbirth)<23;

(18)查询考试成绩有不及格的学生的学号;

代码如下:

select distinct sno from Score where grade<60;

(19)查询年龄在20至22岁之间的学生姓名、系和年龄;

代码如下:

select sname 姓名,sdept 系,2014-year(sbirth) 年龄from student where 2014-year(sbirth) between 20 and 22;

(20)查询年龄不在20至22岁之间的学生姓名、系和年龄;
 

代码如下:

select sname 姓名,sdept 系,2014-year(sbirth) 年龄from student where 2014-year(sbirth) not between 20 and 22;

(21)查询“计算机系”和“电商系”的学生的姓名;

代码如下:

select sname from Student where sdept='计算机系' or sclass='电商系'

(22)查询既不是“计11”也不是“计61”班的学生的姓名和班级信息;

代码如下:

select sname,sclass from Student where sclass not in('计','计');
(23)查询学号为“04262002”的学生的详细情况;
[code]select student.sno,sname,ssex,2014-year(sbirth),sclass,grade from Student,Score where Student.sno=Score.sno and Student.sno='04262002';

(24)查询学号以“04262”打头的学生信息;

代码如下:

select * from Student where sno like '04262%'

(25)查询所有姓“张”学生的学号、姓名、性别、年龄;

代码如下:

select sno 学号,sname 姓名,ssex 性别,2011-year(sbirth) 年龄from Student where sname like'王%'

(26)查询名字中第二个字有“海”字的学生的学号、姓名、性别、年龄;

代码如下:

select sno 学号,sname 姓名,ssex 性别,2011-year(sbirth) 年龄from Student where sname like '_田%'

(27)查询所有不姓“刘”学生的姓名;

代码如下:

select sname 姓名from Student where sname not like '刘%'

(28)查询课程号以“C”开头的最后两个字母为“05”的课程号和课程名;

代码如下:

select cno,cname from Course where cno like 'C%05'

(29)某些学生选修某门课程后没有参加考试,所以有选修课记录,但没有考试成绩,试查找缺少考试成绩的学生和相应的课程号;

代码如下:

select Student.sno,sname,cno from Student,Score where Student.sno=Score.sno and grade is NULL;

(30)查找全部有成绩记录的学生学号、课程号;

代码如下:

select sno, cno from Score where grade is not NULL;

(31)查找“计算机系”年龄在22岁以下的学生学号、姓名;

代码如下:

select sno ,sname from Student where sdept='计算机系' and 2014-year(sbirth)<22

(32)查找选修了“C001”号课程的学生学号及其成绩,查询结果按分数降序排序;

代码如下:

select student.sno,grade from student,Score where Student.sno=Score.sno and cno='C001' order by grade desc;

(33)查询全体学生情况,查询结果按所在系升序排列,对同一系中的学生按年龄降序排列;

代码如下:

select * from student order by sdept asc,2014-year(sbirth) desc;

(34)查询学生总人数;

代码如下:

select count(*) 人数from Student;

(35)查询选修了课程的学生人数;

代码如下:

select count(distinct sno)人数from Score;

(36)在所有课程中查询最高分的学生学号和成绩;

代码如下:

select sno,grade from Score where grade =(select max(grade)from Score )

代码如下:

select distinct a.* from Score a where a.sno IN (select top 1 Score.sno from Score where Score.cno = a.cno order by grade desc)

(37)查询学习“C001”课程的学生最高分数;
 

代码如下:

select max(grade)最高分数from Score where cno='C001'

(38)计算各个课程号与相应的选课人数;

代码如下:

select count(sno) 选课人数from Score group by cno;

(39)查询“计算机系”选修了两门课程以上的学生学号、姓名;

代码如下:

select Student.sno,sname from Student where Student.sno in
(select Student.sno from Student,Score where
sdept='计算机系'and Student.sno=Score.sno group by Student.sno having count(cno)>=2);

(40)自然连接student和score表;

代码如下:

select student.*,Score.grade from student ,Score where student.sno=Score.sno;

(41)使用自身连接查询每一门课程的间接先行课(即先行课的先行课)

代码如下:

select a.cno,b.cpno from Course a,Course b where a.cpno=b.cno;

(42)使用复合条件连接查询选修“c001”号课程且成绩在90分以上的所有同学;

代码如下:

select sname,grade from student,Score where Student.sno=Score.sno and cno='C001' and grade>=90;

(43)使用复合条件连接查询每个学生选修的课程名及其成绩;
 

代码如下:

select Student.sno,sname,cname,grade from Course,Score,Student where Course.cno=Score.cno and student.sno=Score.sno;

(44)查询选修了全部课程的学生;

代码如下:

select Sname from Student where not exists (select *  from Course where not exists(select *  from Score where Sno=Student.Sno and Cno=Course.Cno))

(45)查询所有选修了C001号课程的学生学号、姓名;

代码如下:

select student.sno,sname from student,Score where student.sno=Score.sno and cno='C001';
(46)查询选修了课程C001或C007的学生学号、姓名;
[code]select student.sno,sname,cno from student,Score where student.sno=Score.sno and cno in ('C001','C007');

[/code]
(47)查询“计算机系”的学生及年龄不大于23岁的学生;

代码如下:

select sno ,sname,2014-year(sbirth) age ,sclass from student where sdept='计算机系' or 2014-year(sbirth)<=23;

(48)查询既选修了课程C001又选修了课程C007的所有学生学号、姓名;

代码如下:

select student.sno,sname from student,Score where student.sno=Score.sno and cno='C001' and student.sno in (select student.sno from student,Score where student.sno=Score.sno and cno='C007')

(49)查询选修了课程名为“数据库原理”的学生的学号、姓名、性别、年龄;

代码如下:

select student.sno ,sname,ssex,cname,2011-year(sbirth) age from student,Score,Course where student.sno=Score.sno and Score.cno=Course.cno and cname='数据库原理';

(50)查询其他班中比“计算机系”所有学生年龄都小的学生名单;

代码如下:

select sno,sname ,2014-year(sbirth) age from student where 2014-year(sbirth)<(select min(2014-year(sbirth)) from student where sclass='计61')and sclass !='计61';

(51)查询与“夏天”在同一个系学习的学生学号、姓名、性别、年龄;

代码如下:

select sno,sname,ssex,2014-year(sbirth) age from student where sdept=(select sdept from student where sname='夏天') and sname!='夏天'

(52)建立“计算机系”学生的视图1;

代码如下:

create view view_student
as select sno,sname,ssex,sbirth,sclass from student where sclass='13z网络'

(53)建立“计算机系”学生的视图2,并要求进行修改与插入时,仍须保证该视图只有“计算机系”班学生;

代码如下:

create view view_student2
as select sno,sname,ssex,sbirth,sclass from student where sclass='13z网络' with check option;

(54)建立“计算机系”选修了“C001”课程的学生的视图,定义视图名为“v_cs_C001_student1”;

代码如下:

create view v_cs_C001_student1
as select student.sno,sname,ssex,sbirth,sclass from Student ,Score where
student.sno=Score.sno and sclass='13z网络' and cno='C001';

(55)建立“计算机系”班选修了“C001”课程且成绩在90分以上的学生的视图,定义视图名为“cs_c001_student2”;

代码如下:

create view cs_c001_student2
as
select student.sno,sname ,ssex,sbirth,sclass,cno from student,Score where
student.sno=Score.sno and cno='C001' and sclass='13z网络'and student.sno in (select student.sno from student,Score where student.sno=Score.sno and grade>90)

(56)定义一个反映学生年龄的视图,定义视图名为“v_birth_student”;

代码如下:

create view v_birth_student
as
select sno,sname,2014-year(sbirth) age from student

(57)将学生表中所有女生记录定义为一个视图,视图名为“v_female_student”;

代码如下:

create view v_female_student
as
select * from student where ssex='女';

(58)将学生的学号及其平均成绩定义为一个视图,视图名为“v_average_student”;

代码如下:

create view v_average_student
as
select sno,avg(grade) avscore from Score group by sno;

(59)在“计算机系”学生视图中找出年龄小于22岁的学生;

代码如下:

select * from view_student where 2014-year(sbirth)<=22;

(60)利用视图查询“计算机系”选修了“C001”课程的学生;

代码如下:

select * from v_cs_C001_student1;

(61)通过(52)中的“计算机系”视图修改某个学生的名字;

代码如下:

update view_student set sname='王某某'where sno=04261001;

(62)通过(53)中的“计算机系”视图,插入一个新学生记录。

代码如下:

insert into view_student2(sno,sname,ssex,sbirth,sclass) values ('04262004','张某某','男','1987/11/09','计');

(63)通过(53)中的“计算机系”视图,删除一个学生记录。

代码如下:

delete from view_student2 where sno='04262004'and sname='张某某';

实验课结束了,相信通过本节课的实践操作,小伙伴们都对数据库表的操作有了更进一步的了解。
以上就是查询数据库表的基本操作,几乎涵盖了各种查询操作所遇到的情况,值得大家亲自操作一下,相信对大家的学习有所帮助。

(0)

相关推荐

  • MySQL查询和修改auto_increment的方法

    本文实例讲述了MySQL查询和修改auto_increment的方法.分享给大家供大家参考.具体如下: 查询表名为tableName的auto_increment值: 复制代码 代码如下: SELECT AUTO_INCREMENT FROM information_schema.tables WHERE table_name="tableName"; 修改表名为tableName的auto_increment值: 复制代码 代码如下: ALTER TABLE tableName au

  • 数据库表的创建、管理和数据操作(实验一)

    今天我们就以实验的形式对表的创建.管理和数据操作进行学习,上课吧. [实验目的]:了解SQL语言的使用,进一步理解关系运算,巩固数据库的基础知识. [实验要求]:利用SQL语言进行数据库表的各种操作: 1.数据库表的创建.修改和删除操作. 2.向表中进行数据的插入.删除和修改操作. [实验内容] 1. 利用数据定义语句在实验一创建的stu_DB库中建立学生管理系统的三个表:Student.Course.SC. 2.利用INSERT.UPDATE和DELETE语句对上述三张表的数据进行插入.更新和

  • mysql查询今天、昨天、近7天、近30天、本月、上一月的SQL语句

    mysql查询今天,昨天,近7天,近30天,本月,上一月数据的方法分析总结: 话说有一文章表article,存储文章的添加文章的时间是add_time字段,该字段为int(5)类型的,现需要查询今天添加的文章总数并且按照时间从大到小排序,则查询语句如下: 复制代码 代码如下: select * from `article` where date_format(from_UNIXTIME(`add_time`),'%Y-%m-%d') = date_format(now(),'%Y-%m-%d')

  • sql查询出各科成绩最好的学生信息

    1.相关数据表 Score表  [User]表 SQL语句如下: 复制代码 代码如下: --查询出各科成绩最好的学生信息 --自连接 --SELECT TOP 1 * FROM Score B WHERE B.ScoreName = '数学' ORDER BY B.Score DESC SELECT A.ID,U.Name,A.ScoreName,A.Score FROM Score A,[User]U WHERE UID IN (SELECT TOP 1 UID FROM Score B WH

  • 大幅优化MySQL查询性能的奇技淫巧

    回顾 MySQL / InnoDB 的改善历史.你能很容易发现.在MySQL 5.6稳定版本中从来没有在read-only 这么快的提速,它很容易搞懂,以及在read-only(RO)有着良好的扩张性.也很期待它在read+write(RW)上达到一个较高水平.(特别是在读取数据是数据库主要工作的时候) 然而.我们对于RO在 MySQL 5.6的表现也十分的高兴,在5.7这个版本中,主要工作集中在 read+write (RW)上, 因为在大数据的处理上还没能达到我们的期望.但是RW依赖RO下.

  • MySQL学习笔记3:表的基本操作介绍

    要操作表首先需要选定数据库,因为表是存在于数据库内的 选择数据库 mysql> use school; Database changed 选择好数据库之后,我们就可以在此数据库之中创建表了 创建表 mysql> create table student( -> id int, -> name varchar(20), -> sex boolean -> ); Query OK, 0 rows affected (0.11 sec) create table用于创建表,后

  • 50条SQL查询技巧、查询语句示例

    Student(S#,Sname,Sage,Ssex) 学生表 Course(C#,Cname,T#) 课程表 SC(S#,C#,score) 成绩表 Teacher(T#,Tname) 教师表   问题: 1.查询"001"课程比"002"课程成绩高的所有学生的学号: 复制代码 代码如下: select a.S# from (select s#,score from SC where C#='001') a,(select s#,score from SC whe

  • SQL大量数据查询的优化及非用like不可时的处理方案

    1.对查询进行优化,应尽量避免全表扫描,首先应考虑在 where 及 order by 涉及的列上建立索引. 2.应尽量避免在 where 子句中对字段进行 null 值判断,否则将导致引擎放弃使用索引而进行全表扫描,如: select id from t where num is null 可以在num上设置默认值0,确保表中num列没有null值,然后这样查询: select id from t where num=0 3.应尽量避免在 where 子句中使用!=或<>操作符,否则将引擎放

  • 数据库表的查询操作(实验二)

    [实验目的]:了解SQL语言的使用,进一步理解关系运算,巩固数据库的基础知识. [实验要求]:掌握利用Select语句进行各种查询操作:单表查询.多表连接及查询.嵌套查询.集合查询等. [实验内容] 一.单表查询 1.简单查询 打开查询分析器,根建立teacher表,并加入数据.从teacher表中分别检索出教师的所有信息,以及仅查询教工号.姓名和职称.语句如下: select * from teacher select tno, tname from teacher 如要查询时改变列标题的显示

  • 一个优化MySQL查询操作的具体案例分析

    问题描述 一个用户反映先线一个SQL语句执行时间慢得无法接受.SQL语句看上去很简单(本文描述中修改了表名和字段名): SELECT count(*) FROM a JOIN b ON a.`S` = b.`S` WHERE a.`L` > '2014-03-30 00:55:00' AND a.`L` < '2014-03-30 01:00:00' ; 且查询需要的字段都建了索引,表结构如下: CREATE TABLE `a` ( `L` timestamp NOT NULL DEFAULT

  • mysql查询昨天 一周前 一月前 一年前的数据

    mysql 昨天 一周前 一月前 一年前的数据 这里主要用到了DATE_SUB, 参考如下 复制代码 代码如下: SELECT * FROM yh_contentwhere inputtime>DATE_SUB(CURDATE(), INTERVAL 1 DAY)where inputtime>DATE_SUB(CURDATE(), INTERVAL 1 WEEK)where inputtime>DATE_SUB(CURDATE(), INTERVAL 1 MONTH)where inp

  • SQL如何实现MYSQL的递归查询

    众所周知,目前的mysql版本中并不支持直接的递归查询,但是通过递归到迭代转化的思路,还是可以在一句SQL内实现树的递归查询的.这个得益于Mysql允许在SQL语句内使用@变量.以下是示例代码. 创建表格 CREATE TABLE `treenodes` ( `id` int , -- 节点ID `nodename` varchar (60), -- 节点名称 `pid` int -- 节点父ID ); 插入测试数据 INSERT INTO `treenodes` (`id`, `nodenam

  • MySql查询时间段的方法

    本文实例讲述了MySql查询时间段的方法.分享给大家供大家参考.具体方法如下: MySql查询时间段的方法未必人人都会,下面为您介绍两种MySql查询时间段的方法,供大家参考. MySql的时间字段有date.time.datetime.timestamp等,往往我们在存储数据的时候将整个时间存在一个字段中,采用datetime类型:也可能采用将日期和时间分离,即一个字段存储date,一个字段存储时间time.无论怎么存储,在实际应用中,很可能会出现包含"时间段"类型的查询,比如一个访

  • 如何使用MySQL查询某个列中相同值的数量统计

    数据现在是这样的,我想确定出type列中的news和image....甚至以后有其他值,他们分别有多少个. SELECT type, count(1) AS counts FROM material GROUP BY type count(1),代表统计第一列,写上1 比写 *的效率高! 以上所述就是本文的全部内容了,希望大家能够喜欢.

  • MySQL查询倒数第二条记录实现方法

    有时候会用到查询倒数第二条记录 复制代码 代码如下: last=HolderChangeHistory.find_by_sql (["               SELECT * FROM holder_change_histories                   where treasure_id = ?                   order by id desc                     limit   1,1  ",               

  • 单个select语句实现MySQL查询统计次数

    单个select语句实现MySQL查询统计次数 单个select语句实现MySQL查询统计次数的方法用处在哪里呢?用处太多了,比如一个成绩单,你要查询及格得人数与不及格的人数,怎么一次查询出来?MySQL查询统计次数简单的语句肯定是这样了: 复制代码 代码如下: select a.name,count_neg,count_plus from    (select count(id) as count_plus,name from score2 where score >=60 group by

  • SQL查询出表、存储过程、触发器的创建时间和最后修改时间示例

    --查询建立时间 --表 select * from sysobjects where id=object_id(N'表名') and xtype='U' --表的结构 select * from syscolumns where id=object_id(N'表名') --存储过程 select * from sysobjects where id=object_id(N'dqtx') and xtype='P' --查询最后修改时间 --存储过程 select name,modify_dat

随机推荐