急求select count 语句的用法
做了个小程序,想统计表RYK里 性别中,男女的人数,怎么做啊,大虾来指导下小弟 谢谢 --------------------编程问答--------------------select 性别,人数=sum(case when 性别='男' then 1 else 0 end)--------------------编程问答--------------------
from 性别
select 性别,count(*) as 人数--------------------编程问答-------------------- select 性别,count(*) as 人数
from tb
group by 性别
from tb
group by 性别
--------------------编程问答-------------------- 谢谢 小梁!!我去实验一下 --------------------编程问答-------------------- 能不能完整点的 我刚学VB好多都不懂 麻烦指导下
详细点说 我有个表名字是RKY,里面有性别 (男,女)
我想统计出男生有多少个记录 应该怎么样写这个程序呢,拜托!完整点,我是新手上路,不好意思哈! --------------------编程问答-------------------- 急,顶一下~~~~ --------------------编程问答-------------------- Private Sub Command1_Click()
Dim a As Integer
Data1.RecordSource = "select 性别,a=sum(case when 性别='男' then 1 else 0 end) * from 性别"
Data1.Refresh
aaa.Caption = a
End Sub
还是不得呢 什么原因呢 --------------------编程问答-------------------- 定一下 求救 --------------------编程问答-------------------- 设rs 为recordset对象,con为connection对象
rs.open "select 性别,count(*) as 人数 from tb group by 性别",con --------------------编程问答-------------------- 设rs 为recordset对象,con为connection对象
rs.open "select 性别,count(*) as 人数 from tb group by 性别",con
补充:VB , 基础类