rs.close
set rs=nothing
%>
统计总数量:recordcount
<%
Set rs=Server.CreateObject("ADODB.Recordset")
rs.open "select * from 表名 order by id desc",conn,1,1
response.write rs.recordcount ''显示统计出来的总条数
rs.close
set rs=nothing
%>
代码是死的,人的大脑是灵活的,就要看你如何去灵活运用吧!
下面我们来说说字段为空的判断:
字段为空有两种,一种是默认值设置为字符的比如SQL数据库字段默认值可以填写 N''''
另一种默认值为空的,字段显示内容为 null 的
平时我们查询判断字段为空的把两种空都写上
查询所有为空的字段:
<%
Set rs=Server.CreateObject("ADODB.Recordset")
rs.open "Select * from 表名 where abc='''' or abc is null",conn,1,1
%>
查询所有不为空的字段:
<%
Set rs=Server.CreateObject("ADODB.Recordset")
rs.open "Select * from 表名 where abc<>'''' or is abc not null",conn,1,1
%>
那么在读取字段的时候判断是否为空的:
<%
if isnull(rs(字段名))=true or rs(字段名)="" then
''true表示为空
else
''false表示不为空
end if
if rs(字段名) is null or rs(字段名)="" then
''表示为空
else
''表示不为空
end if
if not rs(字段名) isnull or rs(字段名)<>"" then
''表示不为空
else
''表示为空
end if
%>
今天写到这里,等待继续……