oracle练习2,含答案

时间:2022-05-01 10:17:24
【文件属性】:

文件名称:oracle练习2,含答案

文件大小:10KB

文件格式:SQL

更新时间:2022-05-01 10:17:24

oracle

--1、 查询Student表中的所有记录的Sname、Ssex和Class列。 select sname ,ssex,class from student; --2、 查询教师所有的单位即不重复的Depart列。 select distinct depart from teacher; --3、 查询Student表的所有记录。 select * from student; --4、 查询Score表中成绩在60到80之间的所有记录。 select * from score where degree between 60 and 80; --5、 查询Score表中成绩为85,86或88的记录。 select * from score where degree=85 or degree=86 or degree=88; select * from score where degree in(85,86,88); --6、 查询Student表中“95031”班或性别为“女”的同学记录。 select * from student where class='95031' or ssex='女'; --7、 以Class降序查询Student表的所有记录。 select * from student order by class desc; --8、 以Cno升序、Degree降序查询Score表的所有记录。 select * from score order by cno,degree desc;


网友评论