求sql语句
现在研究简单的东西:
Student(S#,Sname,Sage,Ssex) 学生表
Course(C#,Cname,T#) 课程表
SC(S#,C#,score) 成绩表
Teacher(T#,Tname) 教师表
问题:
SQL code:
1、查询“001”课程比“002”课程成绩高的所有学生的学号;
select a.S# from (select s#,score from SC where C#='001') a,(select s#,score
from SC where C#='002') b
where a.score>b.score and a.s#=b.s#;
看看您们的其他方法。
SQL code:
select a.s#
from sc a join sc b on a.s#=b.s#
where a.c#='001' and b.c#='002' and a.score>b.score
相关问答:
小弟是个新手 现在有个问题一直不能解决
例如
procedure produce_proc
@p001 nvarchar(8000),
@p002 nvarchar(8000),
@p003 nvarchar(8000),
& ......
with adod_dict do
begin
close;
commandtext:='select bgqxcode,count(*) wjsl from wscl_wsda_file where wjnd=:tnd group by bgqxcode'; ......
求A != 1 and B != 2 以外的记录
a!=1 and b!=2 以外?
那岂不是a=1或者b=2的这种情况么
select * from table where a = 1 or b = 2
如果是A != 1 and B != 2的话
select * from table where a ......
大家帮忙看看这2个sql语句哪个查询的速度更快点。谢谢帮忙。比较着急。在做性能测试。
select * from
表A LEFT OUTER JOIN 表B ON (表A.id || ' ' =表B.id) ,表C , 表D, 表E
Where其他条件
select * ......
好奇怪,我在我的电脑上作的一个简单的留言板,留言成功,一切正常,于是我就把它弄到服务器上去,结果什么现象都没有,不管用不用存储过程在我电脑上都正确而服务器总是没有反应
ConnectionStringSettings sett ......