当前位置:首页 > 资讯中心 > 正文内容

海尔冰箱积水如何处理(sql男女生人数)

2023-03-19 22:11:13资讯中心1
<h2>1. sql男女生人数</h2><p>select * from student where 姓名 like '%李%' ---含有李字的 select * from student where 姓名 like '李%'---姓李的 </p><h2>2. sql查询男生女生人数</h2><p>按照你的题目统计每个班超过平均分的人数.不可能是一张表里面的内容,最少要包括两张表‘‘你快把表结构给出来‘‘而且这个平均分是‘‘班级平均分还是年级平均分?</p><h2>3. 数据库统计男女生人数</h2><p>加班加的累了 给你解决一下假设 你的数据库 有一个sex 字段表示‘男’或者‘女’, 表为 tabselect (case sex when '男' then select count(1) from tab end) 男生总数,(case sex when '女' then select count(1) from tab end) 女生总数from tab </p><h2>4. sql查询学生表中男女生人数</h2><p>select 年级, count(*) from 学生表group by 年级 </p><h2>5. sql查询男女比例</h2><p>select distinct 学生姓名,性别,max(年龄),min(年龄) from xsb group by 学生姓名,性别;</p><h2>6. 用sql求男女生各人数</h2><p>如果性别字段中1表示男,0表示女 select sum(case 性别 when 1 then 1 else 0 end) 男生人数,sum(case 性别 when 0 then 1 else 0 end) 女生人数 from table</p>

本网站文章仅供交流学习 ,不作为商用, 版权归属原作者,部分文章推送时未能及时与原作者取得联系,若来源标注错误或侵犯到您的权益烦请告知,我们将立即删除.

本文链接:http://www.lengcanghe.com/zxzx/98781693.html