[求助]如何用ASP统计MDB某表同字段的记录条数?
很急需这样一段asp代码:
设我有数据库文件ABC.mdb 表名table 字段记录为
id name class
1 张三 3
2 李四 5
3 王五 3
4 杨成 4
class字段记录是一个不可预知的数,如何实现(输出):
3的记录为:2条
5的记录为:1条
4的记录为:1条
我试用过一个朋友给的:
<%
set rs=conn.execute("select count(class) from table")
response.write rs(0)
set rs=nothing
%>
总是输出:
3的记录为:4条
5的记录为:4条
4的记录为:4条
我是菜鸟,求完整代码!