如何实现按多条件查询,例如在购物车中按商品名和商品价格查询,要写出查 ...
发布网友
发布时间:2022-04-25 00:49
我来回答
共2个回答
热心网友
时间:2022-04-13 04:28
查询页面设置2个文本框,一个是商品名,一个是商品价格
where=""
price=request("price")
if price<>"" then
where=" and price<"&price&where
end if
title=request("title")
if title<>"" then
where=" and title like '%"&title&"%'"&where
end if
where=" where 1=1"&where
sql="select * from 表"&where
热心网友
时间:2022-04-13 05:46
用SELECT 查询商品名和商品 FOR 表 WHERE (SELECT 商品名和商品 FOR )
总之可以利用嵌套SELECT