以下是引用htys在2022-2-24 11:01:12的发言:
数据表简单,现在就是按年度统计一下出勤次数,输入2022年就能统计出来本年度出勤次数。
想取表里的“服务时间”里的年度来统计次数
* 假设你输入的,姓名-》text1(字符),年度->text2(数值)
nm = allt(thisform.text1.value)
nd = thisform.text1.value
select count(姓名) as 次数,姓名 from 义工考勤 where allt(姓名)== nm and year(服务时间) == nd group by 姓名 into cursor tmp
brow && 或者 ?tmp.次数
* 假设你输入的,姓名-》text1(字符),年度->text2(字符)
nm = allt(thisform.text1.value)
nd = int(val(thisform.text1.value))
select count(姓名) as 次数,姓名 from 义工考勤 where allt(姓名)== nm and year(服务时间) == nd group by 姓名 into cursor tmp
brow