asp 同时查询n条记录

发布网友 发布时间: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
%>

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com