程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> vbs-一段ASP多條件查詢的代碼.提示FROM子句錯誤

vbs-一段ASP多條件查詢的代碼.提示FROM子句錯誤

編輯:編程綜合問答
一段ASP多條件查詢的代碼.提示FROM子句錯誤

一段ASP多條件查詢的代碼
讀者表(ID,NAME,SEX,DEPT,GRADE)。IIS運行提示FROM子句錯誤。



<%
action1=request.QueryString("action1")
action2=request.QueryString("action2")
action3=request.QueryString("action3")
action4=request.QueryString("action4")
action5=request.QueryString("action5")

set rs=server.createobject("adodb.recordset")
sql="select * from reader"
if action1<>"" then
sql=sql&" reader_id like '%"&action1&"%' "
flag=1
end if

if action2<>"" and flag=1 then
sql=sql&" and reader_name like '%"&action2&"%'"
flag=1
elseif action2<>"" then
sql=sql&" reader_name like '%"&action2&"%'"
flag=1
end if

if action3<>"" and flag=1 then
sql=sql&" and reader_sex like '%"&action3&"%'"
flag=1
elseif action3<>"" then
sql=sql&" reader_sex like '%"&action3&"%'"
flag=1
end if

if action4<>"" and flag=1 then
sql=sql&" and reader_dept like '%"&action4&"%'"
flag=1
elseif action4<>"" then
sql=sql&" reader_dept like '%"&action4&"%'"
flag=1
end if

if action5<>"" and flag=1 then
sql=sql&" and reader_grade like '%"&action5&"%'"
flag=1
elseif action5<>"" then
sql=sql&" reader_grade like '%"&action5&"%'"
flag=1
end if

if flag=0 then
sql="select * from reader order by reader_id asc"
end if

rs.open sql,conn,1,1
rs.close
%>

最佳回答:


sql="select * from reader"
->
sql="select * from reader where "

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved