sql 一个表3个条件查询语句
发布网友
发布时间:2022-04-29 01:37
我来回答
共2个回答
热心网友
时间:2022-06-27 18:47
dim wherestr : wherestr=""
if len(pr_tyle)>0 then wherestr=wherestr & " and pr_tyle='" & pr_tyle & "'"
if len(pr_price1)>0 then wherestr=wherestr & " and pr_price1<=" & pr_tyle
if len(3pr_dz)>0 then wherestr=wherestr & " and 3pr_dz='" & 3pr_dz& "'"
sql="select * from 表名 where 1=1" & wherestr
热心网友
时间:2022-06-27 18:47
没看懂你要表达什么?追问sql2005 一张表中,有三个条件要查询 如果没有查询条件就显示全部,如果有查询条件就按条件查询。