此间由宇. 2022-06-04 14:31 采纳率: 75%
浏览 83
已结题

SQL语言-查询语句

SQL语言-查询语句(2)
1.查询2016级“市场营销”专业同学选修课程市场营销学”考试的总平均分。
2.查询选修“C005”课程的考试成绩高干2016056144号同学考试成绩的所有同学的学号及考试成绩。
3.列出2016级电子商务专业学生的平均成绩在75分以上的学生名单及相应的平均成绩
4.查询“张计划”教师任课的学生的考试成绩。
5.某课程的同学人数多于5人的教师姓名及所授课程。
6.统计考试总成绩之和大于1400的同学的成绩和
7.列出既学过“市场营销学”又学过“数据库原理与应用”课程的所有学生姓名

  • 写回答

6条回答 默认 最新

  • 白小T~ 2022-06-07 09:49
    关注

    1.select avg(score) from performance where grade = '2016' and major = '市场营销' and course='市场营销学';
    2.select student_number,score from performance where score > (select score from performance where student_number = '2016056144' and ccourse_no = 'C005') and and ccourse_no = 'C005';
    3.select student_number,avg (score) from performance where grade = '2016' and major = '电子商务' group by student_number having avg (score) > 75
    4.select student_number,score from performance where teacher = '张计划';
    5.select teacher,course from courses group by teacher,course having count(1) > 5
    6.select student_number , sum(score) from performance group by student_number having sum(score) > 1400
    7.select t1.statudent_name from courses t1 join courses t2 on t1.student_number = t2.student_number and t1.course='市场营销学' and t2.course = '数据库原理与应用‘;

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(5条)

报告相同问题?

问题事件

  • 系统已结题 6月15日
  • 已采纳回答 6月7日
  • 赞助了问题酬金5元 6月5日
  • 创建了问题 6月4日

悬赏问题

  • ¥20 求快手直播间榜单匿名采集ID用户名简单能学会的
  • ¥15 DS18B20内部ADC模数转换器
  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历