有关站内模糊查询的源程序! 
发布时间:2006-10-14 2:44:19   收集提供:gaoqian
if bh="" then
   sql="select * from sl where bh like '%"&ss&"%'"
  else
bh=clng(bh)
sql="select * from sl where bh=" & bh & " "
end if
  if nam<>"" then
  sql=sql&" and nam like '%"&nam&"%' "
   end if
  if jz<>"" then
   sql=sql&" and jz like '%"&jz&"%' "
end if
if pc<>"" then
pc=cint(pc)
  sql=sql&" and pc="&pc&" "
  end if
  if zw<>"" then
  sql=sql&" and zw like '%"&zw&"%' "
end if  
 
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50