摘要: 问题: 求出表中最高分学生的姓名与分数。 select ename, sal from emp group by ename order by sal desc limit 1; 以上这条为正确的语句,然而其中的一些思考得到问题: 使用sal 也就是分数进行分组的话 也就是这一句:select en 阅读全文
posted @ 2021-10-05 00:34 忆林pp 阅读(47) 评论(0) 推荐(0)