比如有一个搜索功能姓名,年龄,性别
先写一句sql=select * from A where 1=1 这样就可以向后接了
如果姓名不为空则sql=sql&and name=姓名
如果年龄不为空则sql=sql&and ..................
如果性别不为空则sql=sql&and........
如果三项都为空则
最后执行的语句是select * from A where 1=1 这样也不会出错
我量复制别人的
你要会变通啊
sql="select * from biao where 1=1"
if not a="" then sql=sql & "and a='" & a"'"
end if
if not b="" then sql=sql & "and b='" & b"'"
end if
这样行了吧
sqltext="select * from 表 where 1=1 and BigClassName='"& BigClassName &"'order by vdate desc" if SmallClassName<>"" then sqltext="sqltext & and SmallClassName='"& SmallClassName &"'" end if
if SmallClassName2<>"" then sqltext="sqltext & and SmallClassName2='"& SmallClassName2 &"'" end if
if SmallClassName<>"" then sqltext="sqltext & and SmallClassName='"& SmallClassName &"'" end if
改为
if SmallClassName<>"" then sqltext=sqltext & "and SmallClassName='"& SmallClassName &"'" end if