本文主要是介绍PB—制作统计表,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
看到统计表,就有一种感觉:哇塞!好高大上。这是最初看见功能的时候,自己就认为特别的难搞。但是当自己看了看资料,敲了敲之后发现,其实也不过就是一个select语句,然后一个控件就完全搞定了。
看一下代码:
//定义参数
integer thecount[5],seriesno
integer i
string thesql[5],stuid
//添加一个系列
seriesno=gr_1.AddSeries("成绩分布")
//根据不同的分数段拼写不同的语句来查询该分数段的人数
thesql[1]="select count(*) from t_stuScore where stuScore>=90"
thesql[2]="select count(*) from t_stuScore where stuScore>=80 and stuScore<90"
thesql[3]="select count(*) from t_stuScore where stuScore >=70 and stuScore<80"
thesql[4]="select count(*) from t_stuScore where stuScore >=60 and stuScore <70"
thesql[5]="select count(*) from t_stuScore where stuScore <60"//循环查询SQL
for i =1 to 5//定义动态的SQL来执行不同的SQL语句Declare mycursor
这篇关于PB—制作统计表的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!