1. 首页
  2. 操作系统
  3. Unix
  4. SQL50个查询命令

SQL50个查询命令

上传者: 2020-11-20 05:22:58上传 TXT文件 11.84KB 热度 16次
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#; 2、查询平均成绩大于60分的同学的学号和平均成绩; select S#,avg(score) from sc group by S# having avg(score) >60; 3、查询所有同学的学号、姓名、选课数、总成绩; selec
下载地址
用户评论