asp: if elseif 多条件查询

2024-11-02 01:27:29
推荐回答(1个)
回答1:

查询,是有查询语句完成的,所以你可以通过 if else 语句来写查询语句
sql="select * from 表1 where 1=1 "
if a="" and b="" then
sql=sql & "and 条件1"
elseif a="" and b<>"" then
sql=sql & "and 条件2"
else
sql=sql & "and 条件3"
end if