2011年7月1日
摘要: 1)现在的情况是这样的:有一个表 testtbl( id int, name varchar, level int, age int) ; 根据level的取值分为三个级别:高,中,低。 现在要统计每个age中,高、中、和低级别的数目。即通过age作group by,但在每个age值内,还要按level取值统计各级别的记录数。解决方案:select age, (select count(*) from testtbl t2 where t2.age=t1.age and level <?)as low,(select count(*) from testtbl t2 where t2.a 阅读全文
posted @ 2011-07-01 15:13 桃源月色 阅读(241) 评论(2) 推荐(0) 编辑