ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
统计抽出数据 === ## 知识点 - distinct # 过滤重复的数据 - sum - max/min - group by/haing ## 实战 ``` > select distinct team from users; > select sum(score) from users; > select max(socre) from users; > select min(score) from users; > select * from users where score = (select max(score) from users); > select * from users where score = (select min(score) from users); > select team,max(score) from users group by team; > select team,max(score) from users group by team having max(score) >= 25; > select team,max(score) from users group by team having max(score) >= 25 ; ```