[讨论]多条件数据库查询的优化方法后错误
多条件数据库查询的优化方法假设有一个名为employee的表,现在我们要从其中查询数据,条件有三个,由用户动态选择
Name=A
Sex=B
Age =C
其中条件A、B、C之间是与的关系,A、B、C均为动态选择,可以取其中的一个、两个或三个,也可以一个都不选,当三个条件都不选择时则认为是无条件查询
按照通常的做法:
这样,最终的结果有8个,即有8条查询语句,分别是
1.select * from employee;
2.select * from employee where Age =C ;
3.select * from employee where Sex=B;
4.select * from employee where Sex=B and Age=C;
5.select * from employee where Name=A;
6.select * from employee where Name=A and Age=C;
7.select * from employee where Name=A and Sex=B ;
8.select * from employee where Name=A and Sex=B and Age=C;
显然这是比较烦琐的,而且用到了多重嵌套IF语句,因而在条件增多时,其复杂程度将大大增加。对它进行优化,方法如下:
Dim Str_Result As String
Str_Result = ""
if A <> "" then
Str_Result="where Name =A"
end if
'----------------
if B <> "" then
if Str_Result="" then
Str_Result="where Sex=B"
else
Str_Result=Str_Result+"and Sex = B"
end if
end if
'-----------------
if C <> "" then
if Str_Result="" then
Str_Result="where Age =C"
else
Str_Result=Str_Result+"and Age=C"
end if
end if
最终的结果查询语句为: SQL = "select * from employee + Str_Result"
为什么运行后,出现 "Form 子句语法错误" 提示
[ 本帖最后由 xzqsml 于 2010-1-29 10:17 编辑 ]