怎么用SQL在ASP中判断记录中是否已经存在了

2025-02-25 21:22:27
推荐回答(1个)
回答1:

asp判断数据是否存在,可以使用

if not rs.eof then
response.write "已存在数据"
else
response.write "数据不存在"
end if