用COUNT怎么统计
发布网友
发布时间:2022-11-09 04:27
我来回答
共4个回答
热心网友
时间:2023-09-26 21:15
算了,分多少有什么用呢?
sql="select count(*) as totalcount from table where a=5"
Set rs= Server.CreateObject("ADODB.Recordset")
rs.open sql,conn,1,3
if not rs.eof or rs.bof then
response.write(rs("totalcount"))
else
response.write("0")
end if
热心网友
时间:2023-09-26 21:15
select count(字段) from 表 where 字段 = 5
asp不懂...
热心网友
时间:2023-09-26 21:16
select count(*) from table where a=5;
再加多点分告诉你怎么显示在ASP里.
热心网友
时间:2023-09-26 21:16
select count(*) from 表名 where A=5
asp 不会。sorry