3,497
社区成员
发帖
与我相关
我的任务
分享select max(score),min(score) from student;select max(score) from student;
select min(score) from student;select ma,mi from
(select max(score) ma from student) a,
(select min(score) mi from student) b
第二种,把2个查询做成子查询就可以了