asp代码如何查询数据库中有多少条相同记录??
发布网友
发布时间:2023-08-22 15:21
我来回答
共2个回答
热心网友
时间:2024-12-02 06:45
<%
dim rs,sql
set rs=server.createobject("adodb.recordset")
zhanghao=Request.Form("textfield")
sql="select * from jcs where zhanghao=" & zhanghao
rs.open sql,conn,1,3
if rs.recordcount>3 then
response.write("<Script language=JavaScript>alert('相同的有3条以上记录');</Script>")
end if
%>
----------------------------
应该可以了
热心网友
时间:2024-12-02 06:45
select count(zhanghao) from jcs where zhanghao==textfield的值
看下查询到的数目,不就了然了?
别告诉我你放到程序里就不会用了。
用的是ASP.NET的话,有sql类的.