将原来的SQL语句替换为:
'-------------------------------------------------动态 SQL 生成 -----------------------------------------
sql="select * from output_shu where 1=1 "
if sname<>"" then '-------------------加入姓名------------------------------------
sql= sql & " and 姓名='" & sname & "'"
end if
if station<>"" then '-------------------加入岗位-------------------------------------
sql=sql & " and 岗位='" & station & "'"
end if
if sclass<>"" then '------------------加入班次---------------------------------------
sql=sql & " and 班次='" & sclass & "'"
end if
if sbreed<>"" then '-------------------加入品种--------------------------------------
sql=sql & " and 品种='" & sbreed & "'"
end if
if sbdate<>"" then '------------------加入起始时间----------------------------------
sql=sql & " and 时间>=#" & sbdate & "#"
end if
if sedate<>"" then '------------------加入结束时间----------------------------------
sql=slq & " and 时间<=#" & sedate & "# order by 品种"
end if
显示问题自己可以想想
[此贴子已经被作者于2005-7-7 13:49:10编辑过]