--假设有两张表,一张学生表student(stuid,name,age),一张学生成绩表score(stuid,course,score)。
--建表
create table student(
stuid number(6) not null,
name varchar2(20) default 'aa' not null,
age number,
primary key(stuid),
--foreign key (DEPTNO) references DEPT (DEPTNO), 外键设置
check (age>0 and age<150))
create table score(
stuid number(6) not null,
course varchar2(20) ,
score number(6) default 0 not null,
foreign key (stuid) references student (stuid)
)
drop table score--删除表
insert into score values(9,'英语',44)--插入
/*
1.查询小明所选的所有课程的成绩
2.查询小明所有不及格的课程
*/
select t.stuid,t.course,t.score from score t where t.stuid=1 and t.score<60
--.查询所有不及格课程有两门以上的学生的姓名以及不及格课程数。(分组查询)
select s.name ,count(t.course) from score t,student s where s.stuid=t.stuid and t.score<60 group by s.name
--4.对所有学生英语课成绩从高到低排序
select s.name ,t.course,t.score from score t,student s where s.stuid=t.stuid and t.course='英语' order by t.score desc
--5.查询英语课的最高成绩,最低成绩,以及平均成绩。
select max(t.score),min(t.score),avg(t.score) from score t,student s where s.stuid=t.stuid and t.course='英语'
--日期转换
/*select months_between(to_date('2008-09-09','yyyy-mm-dd'),to_date('2008-07-09','yyyy-mm-dd')) from dual
select nvl(comm,0) from emp
select name ,decode(sex,1,'男',2,'女') from student*/
--建表
create table student(
stuid number(6) not null,
name varchar2(20) default 'aa' not null,
age number,
primary key(stuid),
--foreign key (DEPTNO) references DEPT (DEPTNO), 外键设置
check (age>0 and age<150))
create table score(
stuid number(6) not null,
course varchar2(20) ,
score number(6) default 0 not null,
foreign key (stuid) references student (stuid)
)
drop table score--删除表
insert into score values(9,'英语',44)--插入
/*
1.查询小明所选的所有课程的成绩
2.查询小明所有不及格的课程
*/
select t.stuid,t.course,t.score from score t where t.stuid=1 and t.score<60
--.查询所有不及格课程有两门以上的学生的姓名以及不及格课程数。(分组查询)
select s.name ,count(t.course) from score t,student s where s.stuid=t.stuid and t.score<60 group by s.name
--4.对所有学生英语课成绩从高到低排序
select s.name ,t.course,t.score from score t,student s where s.stuid=t.stuid and t.course='英语' order by t.score desc
--5.查询英语课的最高成绩,最低成绩,以及平均成绩。
select max(t.score),min(t.score),avg(t.score) from score t,student s where s.stuid=t.stuid and t.course='英语'
--日期转换
/*select months_between(to_date('2008-09-09','yyyy-mm-dd'),to_date('2008-07-09','yyyy-mm-dd')) from dual
select nvl(comm,0) from emp
select name ,decode(sex,1,'男',2,'女') from student*/