山东大学数据库系统实验答案

这个博客提供了山东大学数据库系统实验的详细步骤,包括创建并更新多个表格,如test4_01到test4_10,涉及学生分数、平均分、学分汇总、部门ID等数据的计算和填充,以及数据清洗操作,如去除空格和无效值。
摘要由CSDN通过智能技术生成
1.create table test4_01 as
(
select * 
from pub.STUDENT_41)
alter table test4_01 add sum_score
create table test41 as 
(select sum(score) sumscore,sid
from pub.STUDENT_COURSE
group by sid)
update test4_01
set sum_score=(
select sumscore
from test41
where test41.sid=test4_01.sid)
2.create table test4_02
as(select * 
from pub.STUDENT_41)
create table test42 as
(select sid,avg(score) avgscore
from pub.STUDENT_COURSE
group by sid)
alter table test4_02 add avg_score numeric(4,1)
update test4_02
set avg_score=(
select avgscore
from test42
where test42.sid=test4_02.sid)
3.create table test4_03 as
(select *
from pub.STUDENT_41)
alter table test4_03 add sum_credit int
create table test43 as
(select sum(credit) sumcredit,sid
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值