1學生表student
s#學號,sname姓名,difdate日期,班級grade
2課程表 course
c#課程號 ,名字cname
3成績單score
s#學號 c#課程號 成績score
--1統計每個班級有多少人
select grade,count(sname) from ze_student group by grade;
--2、2007級的各學生的平均成績 沒有成績的為0;
select a.sname,(select **g(nvl(b.score,0)) from ze_score b where b.s#=a.s#) from ze_student a where grade=2007;
--3 每科 平均成績和最高成績 最低成績 2007級 保留2位小數點 四捨五入
select b.c#,**g(b.score),max(b.score),min(kxsnrgxxydnvl(b.score,0)) from ze_student a,ze_score b where b.s# = a.s# and a.grade =2007 group by
--4 給2007級 數學加5分
update ze_score
set score=nvl(score,0)+5
where s# in (select s# from ze_student where grade=2007) and c# 程式設計客棧=(select c# from ze_course where cname='數學');
--5 90分以上的為優秀 90到85為良好,60分 不及格 各人平均成績
select s#, c,
case
when c>=90 then '優秀'
when c<90 and c>=60 then '及格'
else '不及格' end as jige
from (select s#,**g(nvl(score,0)) as c from ze_score group by s# ) order by jige desc;
--6 求同月出生的 人數
select to_char(difdate,'mm') as 月份,count(s#) as 出生人數 from ze_student group by to_char(difdate,'mm');
--7 各科的及格率和平均成績 擷取 保留2位
--及格率
select c#,**g(nvl(score,0))as 平均成績,sum(nvl(score,0))as 總成績, count(s#) as 各科人數,
trunc(sum(
case when nvl(score,0)>60 then '1'
else '0' end)/count(s#),2) as 及格率
from ze_score group by c#;
--每人的及程式設計客棧格率
select s#, **g(nvl(score,0))as 平均成績,sum(nvl(score,0))as 總成績, count(c#) as 總科目,
sum(
case when nvl(score,0)>60 then 1
else 0 end
)/count(c#) as 及格率
from ze_score group by s#;
--8刪除 姓名是張三 的大學語文 成績
select * from ze_score where s# in (select s# from ze_student where sname in '張三') and c#=(select c# from程式設計客棧 ze_course where cname ='大學語文');
--9 將數學替換成高等數學
update ze_course set cname='高等數學'where cname like '%數學%';
--10 格式化 ,顯示 將學號修改成s開頭 不足12位補0;
--查詢
select concat('s',lpad(s#,11,0)) as s# from ze_score ;
select concat('s',lpad(s#,11,0)) as s# from ze_student ;
--格式化
update ze_score set s#= concat('s',lpad(s#,9,0));
update ze_student set s#= concat('s',lpad(s#,9,0));
四個足球隊
select a.name,b.name from qiu a,qiu b where a.name
commit
rollback
伺服器型別
伺服器協議
全域性資料庫名稱
伺服器ip位址
伺服器端口號
使用者名稱和密碼
本文標題: sql 語句練習與答案
本文位址:
SQL語句練習
建立一張表,記錄 呼叫員的工作流水,記錄呼叫員編號,對方號碼,通話開始時間,結束時間。建表,插資料等都自己寫出sql 要求 輸出所有資料中通話時間最長的5條記錄。輸出所有資料中撥打長途號碼 對方號碼以0開頭 的總時長 輸出本月通話時長最多的前三個呼叫員的編號 輸出本月撥打 次數最多的前三個呼叫員的編...
SQL 語句練習
mysql select from persons limit 5 oracle select from persons where rownum 5 select from persons where name like l select from persons where name not l...
SQL語句練習
1 把兩張 的資料抽取出來放到另外一張 中 1 pt表 role id int pt int 2 season score表 role id int season score int 3 player表 role id int pt int season score int count int 4 ...