发布网友 发布时间:2022-04-22 00:37
共2个回答
热心网友 时间:2022-04-08 22:36
sql 为
select top 1 1 from 表1 where 条件
union all
select top 1 1 from 表2 where 条件
union all
select top 1 1 from 表3 where 条件
然后asp中判断,如果记录数等于3,就都存在,不等于就不存在
热心网友 时间:2022-04-08 23:54
<%
set rs=conn.execute("select count(id) from news where 条件")
ok=false
if rs(0)=n then
ok=true
end if
response.write ok
%>