摘要: 案例 方式1 使用group by select s_age,count(1) from( select s_age from student_tb_orc group by s_age ) b 方式2 使用distinct select s_age,count(distinct s_age) fr 阅读全文
posted @ 2024-06-07 14:04 青云- 阅读(138) 评论(0) 推荐(0)