PL/SQL学习笔记一

--假设有两张表,一张学生表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*/
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值