带有AND和OR运算符的SQL select语句问题

时间:2012-12-19 05:24:20

标签: sql asp-classic vbscript sql-server-2000 ado

我正在使用Classic ASP从SQL Server 2000数据库中获取记录。这就是我使用的代码。

ASP代码:

<form name="search" method="post" onsubmit="return attention();">
<table width="60%" border="0" cellpadding="2" cellspacing="0" style="margin:0 auto">
<tr>
    <td colspan="2"><h1 style="color:#003399;">Search for Certificate of Analysis</h1></td>
</tr>
<tr>
    <td valign="bottom">Product number <sup style="color:#EE0000;font-size:1.3em">*</sup></td>
    <td valign="bottom">Lot number</td>
</tr>
<tr>
    <td width="30%" valign="top">
        <input type="text" name="input1" size="20"/>
    </td>
    <td valign="top">
        <input type="text" size="20" name="input2"/> 
        <input style="background-color:#ffffff;border:0px;cursor:pointer" size="10" type="submit" name="sub" value=">>" />
    </td>
</tr>

</table>
<%
    if request.Form("sub") <> "" then
    Dim fname, lname
    fname= request.Form("input1")
    lname= request.Form("input2")
    session("n") = fname & lname
    sql = "Select * from search where cat_no_batch_no LIKE '"&request.Form("input1")&"%' OR cat_no_batch_no='"&session("n")&"'"
    rs.open sql, con, 1, 2
    if rs.eof then

    response.write("Please provide a valid Cat No.")    

    else



            do while not rs.eof
        %>
            <table border="1" cellpadding="5" cellspacing="0" width="60%" style="margin:0 auto; border-collapse:collapse;border-color:#999999">
            <tr>
                <td width="50%"><%=rs("cat_no_batch_no")%></td>
                <td width="10%">Click to open <a target="_blank" href="http://localhost/search1/<%=rs("pdf_path")%>"><%=rs("cat_no_batch_no")%></a></td>
            </tr>
            </table>

        <%
            rs.movenext
            loop
        end if
    rs.close
    end if
%>
</form>

LIKE语句上方按预期工作,并显示多条包含类似 Cat编号的记录。 当我在第一个输入框中输入 Cat No 而在另一个输入框中输入批号时,问题会上升。我想要的输出应该只是一条记录显示,因为我已经给出了 Cat No。批号,但它显示了多条记录。

我提供的图像更清晰。

  1. 在下图中,我将 6106021 作为产品编号,因此会显示两个条目。 enter image description here

  2. 在此图片中,我将 6106021 作为产品编号 218111 作为批号,它显示了两个条目这是问题所在,它应该显示一个条目,因为批号是唯一的,而猫号可以是相同的。 enter image description here

2 个答案:

答案 0 :(得分:2)

向自己阅读你的问题并思考你在说什么:

您声明“我所需的输出应该只是一条记录,因为我已经给出了Cat编号和批号”

但是在你的SQL中你写了where cat_no_batch_no LIKE '"&request.Form("input1")&"%' OR cat_no_batch_no='"&session("n")&"'

关键词是AND vs. OR

在你的脑海里,你认为这两个条件必须是真的,但你的查询却不然。如果您希望两个条件都为真,则必须使用AND运算符。

Naoki正在做些什么 - 你将不得不根据指定的标准修改你的SQL。

答案 1 :(得分:1)

我猜你可以写两个单独的SQL查询,因为提供了“批号”。 您的代码可能如下所示:

if lname = "" then
    sql = "Select * from search where cat_no_batch_no LIKE '"&request.Form("input1")&"%'" 
else
    sql = "Select * from search where cat_no_batch_no LIKE '"&session("n")&"%'"
end if

我希望这可以帮助