标签:rom sql查询 bsp student sql 分享 ima where --
先创建三个表,分别为student,course,SC(即学生表,课程表,选课表)
分别输入以下信息:
student表:
course表:
sc表:
---------------------------------------------------------------------
查询成绩在70到80分之间的学生的学号、课程号和成绩。
select sno as 学号,cno as 课程号,grade as 成绩 from sc where grade between 70 and 80;
标签:rom sql查询 bsp student sql 分享 ima where --
原文地址:http://www.cnblogs.com/dreamyu/p/6443299.html