文章分类 -  数据库

50个常用的笔试、面试sql语句
摘要:50个常用的笔试、面试sql语句2009-12-17 15:05Student(S#,Sname,Sage,Ssex) 学生表Course(C#,Cname,T#) 课程表SC(S#,C#,score) 成绩表Teacher(T#,Tname) 教师表问题:1、查询“001”课程比“002”课程成绩高的所有学生的学号;select a.S# from (select s#,score from SC where C#='001') a,(select s#,scorefrom SC where C#='002') bwhere a.score>b.scor 阅读全文

posted @ 2013-07-19 12:00 瀚海一漂一九九一 阅读(157) 评论(0) 推荐(0)