请教SQL查询语句 学生选课问题 - ITeye问答
2009年12月25日 - 请教SQL查询语句 学生选课问题30 表名:student 字段:id,name 数据如下: 1,学生A 2,学生B 3,学生C --- 表名:subject 字段:id,name 数据如下: 1,数学 2...
怎么用sql语句查询一个学生的选课情况,并列出课程信息_百度知道
最佳答案: select stu.name,course.*from stu,course,chice where stu.sid=chice.sid and course.c_id=choice.c_idand stu.name='张三' --这个地方输入你想...更多关于请教SQL查询语句 学生选课问题的问题>>
以学生选课系统为例的50个常用sql语句_百度文库
2016年11月4日 - 以学生选课系统为例的50个常用sql语句_高等教育_教育专区。50 个常用 sql 语句...Tname) 教师表 问题: 1、查询“001”课程比“002”课程成绩高的所有...
SQL查询学生选课数据库_百度知道
最佳答案: 1、select * from student where not exists(select * from studentcourse where studentno=student.studentno2、select * from course where not exists...更多关于请教SQL查询语句 学生选课问题的问题>>
学生选课数据库SQL语句练习题_百度文库
2013年12月28日 - 学生选课数据库SQL语句练习题_从业资格考试_资格考试/认证_教育专区。一、设有一...course where score.cno=course.cno; 16、 查询所有学生的 Sname、...