摘要:
--33.查询成绩比该课程平均成绩低的同学的成绩表。 select degree from score s join (select avg(degree) as d from score a group by cno)a on s.cno=a.cno and s.degree1 ; --37、查询Student表中不姓“王”的同学记 select * from student where... 阅读全文
posted @ 2016-10-18 16:03
浪里各浪
阅读(221)
评论(0)
推荐(0)
摘要:
管理员表: 用户表: 水表: 电表: 水电费总表: 阅读全文
posted @ 2016-10-18 09:49
浪里各浪
阅读(418)
评论(0)
推荐(0)