摘要: * 查最高值或者最低值对应行的数据: 查询Score表中的最高分的学生学号和课程号: 两种方法(子查询或者排序): 子查询法:select sno,cno from score where degree = (select max(degree) from score); 分析: 1.查score表 阅读全文
posted @ 2018-02-02 16:13 CodeProducter 阅读(186) 评论(0) 推荐(0)