位置:首页 > 自考专业

北大“数据库原理”上机实践题目总结(6)

  • 发布时间:2024-09-15 16:21:23
  • 来源:本站整理
  • 阅读:
导读:
  答案:2_1
  set talk off
  clear
  use teacher
  list off
  ?
  use teacher
  average age for sex =“女” to 22
  ?“女教师的平均年龄:”
  ??22
  ??“岁”
  答案:2_2
  set talk off
  clear
  use c2
  index on c

select teacher.tno,c2.cname,c2.ctimes,sum(c2.ctimes);

from teacher,c2,tc;

where teacher.tno=tc.tno and c2.cno=tc.cno and teacher.tno='1000';

group by c2.ctimes

答案:2_4

set talk off

select teacher.tno,teacher.tname,avg(tc.grade);

from teacher,tc;

where teacher.tno=tc.tno ;

group by teacher.tno;

order by tc.grade

set talk off

close all

return

相关阅读