怎么用SQL数据库编写学生成绩管理系统啊~~~???急救!可以追加分!!

功能要求:1.学生可根据用户名密码登陆系统,查询成绩。(用户名规定为学号)2.老师可根据用户名密码登陆系统,录入学生成绩、修改学生成绩、提交学生成绩。在老师未提交成绩之前... 功能要求:
1. 学生可根据用户名密码登陆系统,查询成绩。(用户名规定为学号)
2. 老师可根据用户名密码登陆系统,录入学生成绩、修改学生成绩、提交学生成绩。在老师未提交成绩之前,可以修改成绩,此时学生不能查询。老师提交成绩后,不可修改成绩,此时学生可以查看成绩。
3.系统管理员可根据用户名密码登陆系统,对学生信息,教师信息,成绩信息等进行管理

注: 使用SQL-Server创建数据库和表。
在SQL-Server中写出实现相关功能的SQL语句,并执行
展开
 我来答
562531a
推荐于2021-01-20
知道答主
回答量:1
采纳率:0%
帮助的人:2.5万
展开全部
---------更新成绩status=2 未提交成绩 可修改成绩 不能插入更新 学生不可查看, status=1成绩已提交 不可修改成绩 学生可以查看

------插入数据-------------
--用户信息表
insert into userinfo values('20101000','123',1)
insert into userinfo values('20101004','123',2)
insert into userinfo values('20101152100','123',3)
select*from userinfo
--学生信息表
insert into studinfo values('20101152100','素雅','女','计科1班')
select *from studinfo
--教师信息表
insert into techerinfo values('20101004','李大为','男')
select *from techerinfo
--成绩表
insert into studscoreinfo values('5','1003','20101152100','20101003','汇编','99',1)
select *from studscoreinfo
---教师管理成绩--------------
--已提交时
update studscoreinfo set studscore='86' where courseid='1002' and studno='20101152103' and status=2
print '已提交不能修改成绩'
select*from studscoreinfo
--未提交时
update studscoreinfo set studscore='90' where courseid='1001' and studno='20101152083' and status=1
print '已修改成绩'
--提交成绩
--改为未提交
update studscoreinfo set status=2 where courseid='1001' and studno='20101152083'
--改为提交
update studscoreinfo set status=1 where courseid='1001' and studno='20101152083'
select *from studscoreinfo
----------------学生----------
---已提交可查看成绩时
select studno,teachno,studscore,course,studscore,status
from userinfo U,studscoreinfo S where U.username=S.studno and U.role=3 and S.studno='20101152083' and S.status=1
print '查询成功!'
---未提交不可查看成绩时
select studno,teachno,studscore,course,studscore,status
from userinfo U,studscoreinfo S where U.username=S.studno and U.role=3 and S.studno='20101152083' and S.status=2
print '还不可查询'
----------系统管理员 可对学生信息,教师信息,成绩信息等进行管理----------
select *from userinfo
select *from studinfo
select *from techerinfo
select *from studscoreinfo
--学生信息表---
--增加
insert into userinfo values('20101152101','123',3)
insert into studinfo values('20101152101','陆琼','女','计科2班')
select *from studinfo
--修改更新
update studinfo set studsex='男' where studno='20101152101'
select *from studinfo
--删除
delete from studinfo where studno='20101152101'
select *from studinfo
--教师信息表----
--增加
insert into userinfo values('20101005','123',2)
insert into techerinfo values('20101005','烧饼','男')
select *from techerinfo
--修改
update techerinfo set techname='烧包谷' where techname='烧饼'
select *from techerinfo
--删除
delete from techerinfo where teachno='20101005'
select *from techerinfo
--成绩信息表-----
--增加
insert into studscoreinfo values('6','1004','20101152100','20101002','数据结构','70',1)
select *from studscoreinfo
--修改
update studscoreinfo set studscore='100' where studno='20101152100' and courseid='1004'
select *from studscoreinfo
--删除
delete from studscoreinfo where studno='20101152100'
select *from studscoreinfo
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
光点科技
2023-08-15 广告
通常情况下,我们会按照结构模型把系统产生的数据分为三种类型:结构化数据、半结构化数据和非结构化数据。结构化数据,即行数据,是存储在数据库里,可以用二维表结构来逻辑表达实现的数据。最常见的就是数字数据和文本数据,它们可以某种标准格式存在于文件... 点击进入详情页
本回答由光点科技提供
yinhelan
2013-07-03 · 超过11用户采纳过TA的回答
知道答主
回答量:68
采纳率:100%
帮助的人:30.2万
展开全部
。。。。。。这个 数据库设计是么? 还有 亲 这个网上一大把啊。。别浪费财富了!去搜索一下好多源码来着的!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式