* 要求查询教师自己所授课的所有学生的成绩成绩
* 过滤有用信息
* 1. select jsgh,jsxm from js
* 2. select xh,xm,bjh from xs
* 3. select kch,kcm from kc
* 4. select bjh,bjm,dept from bj
* 5. select bjh,jsgh,kch from skjh
* 6. select xh,kch,cj from cj
* 假设条件:教师的工号为 cJsgh = "J0001"
* 显示格式:学号,学生姓名,课程名,成绩,教师工号,未测试
select cj.xh,xs.xm,kc.kcm,cj.cj,js.jsgh from js,xs,kc,skjh,cj ; && 不需要显示班级信息,可以不连接bj表
where cj.kch=kc.kch and cj.xh=xs.xh ; && 为了取 “课程名称,学生姓名”
and skjh.kch=kc.kch and skjh.jsgh=js.jsgh skjh.bjh=xs.bjh ;
and js.jsgh=cJsgh
[此贴子已经被作者于2018-7-9 13:11编辑过]