设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 66|回复: 5
打印 上一主题 下一主题

查询错误!!!

[复制链接]
跳转到指定楼层
1#
发表于 2010-1-9 08:39:07 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
语法错误 (操作符丢失) 在查询表达式 'jl.u_number=28 and jl.d_number=dept.d_number and date becneen 2008-3-1 and 2008-4-1' 中。
/bysj/jl2.asp, 第 18 行
可是这几个变量明明都已经收到值了,请问这个是怎么回事???哪位高手告诉一下,谢谢!!!


<!--#include file="conn.asp"-->
<%
dim u_number, date1, date2
u_number=trim(request("u_number"))
date1=trim(request("date1"))
date2=trim(request("date2"))

if u_number="" then
    response.write "输入不能为空"
    response.end
end if


set rst=server.createobject("adodb.recordset")
sql="select * from jl, dept where jl.u_number="&u_number&" and jl.d_number=dept.d_number and date becneen  "&date1&" and "&date2&" order by date asc"
rst.open sql,conn,1,1
%>

<html>
<head>
<title>查看奖励信息</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--#include file="top.asp"-->

<p>
  <%      
    if Not(rst.bof and rst.eof) then'判别数据表中是否为空记录
            NumRecord=rst.recordcount
            rst.pagesize=10
            NumPage=rst.Pagecount
            if request("page")=empty then
            NoncePage=1
        else
        if Cint(request("page"))<1 then
            NoncePage=1
        else
            NoncePage=request("page")
        end if
        if Cint(Trim(request("page")))>Cint(NumPage) then NoncePage=NumPage
    end if
else
    NumRecord=0
    NumPage=0
    NoncePage=0
    end if
%>
<table width="100%" border="1" bordercolorlight="#000000" bordercolordark="#FFFFFF">
<tr>
<td colspan="10" align="center" height="30">奖励信息</td>
</tr>
  <tr>
    <td width="10%">员工编号</td>
    <td width="10%">员工姓名</td>
   <td width="10%">所在部门</td>
    <td width="10%">奖励原因</td>
    <td width="10%">奖励金额</td>
    <td width="10%">是否发放</td>
    <td width="10%">部门意见</td>
    <td width="10%">奖励时间</td>
    <td width="10%" align="center">修改</td>
    <td width="10%" align="center">删除</td>
  </tr>
  
  <%if Not(rst.bof and rst.eof) then
    rst.move (Cint(NoncePage)-1)*10,1
    for i=1 to rst.pagesize
%>
  
  <tr>
    <td align="center"><%=rst("u_number")%>;</td>
    <td align="center"><%=rst("u_name")%></td>
   <td align="center"><%=rst("d_name")%></td>
    <td align="center"><%=rst("typ")%></td>
    <td align="center"><%=rst("prize")%></td>
    <td align="center"><%=rst("sff")%></td>
    <td align="center"><%=rst("yj")%></td>
    <td align="center"><%=rst("date")%></td>
    <td align="center">修改</td>
    <td align="center">删除</td>
  </tr>
</table>
<%                 rst.movenext
                       if rst.eof then exit for
                    next
else
    response.write "<tr><td colspan=10><marquee scrolldelay=120 behavior=alternate>没有找到任何记录!!!</marquee></td></tr>"
end if   

rst.close
set rst=nothing

%>

<table width="748" border="0" align="center">
  <tr>
          <td height="17">
            
            <div align="right">
              <input type="hidden" name="page" value="<%=NoncePage%>">
              <%
if NoncePage>1 then
    response.write "|<a href=jl2.asp?page=1>首 页</a>| |<a href=jl2.asp?page="&NoncePage-1&">上一页</a>|&nbsp"
else
    response.write "|首 页| |上一页|&nbsp"
end if
if Cint(Trim(NoncePage))<Cint(Trim(NumPage)) then
    response.write "|<a href=jl2.asp?page="&NoncePage+1&">下一页</a>| |<a href=jl2.asp?page="&NumPage&">尾 页</a>|"
else
    response.write "|下一页| |尾 页|"
end if
%>
&nbsp;页次:<font color="#0033CC"><%=NoncePage%></font>/<font color="#0033CC"><%=NumPage%></font>
              共<font color="#0033CC"><%=NumRecord%></font>条记录&nbsp; </div></td>

</table>
</body>
</html>
2#
发表于 2010-1-9 08:39:11 | 只看该作者
sql="select * from jl, dept where jl.u_number="&u_number&" and jl.d_number=dept.d_number and date becneen  "&date1&" and "&date2&" order by date asc"
改成
sql="select * from jl, dept where jl.u_number=#"&u_number&"# and jl.d_number=dept.d_number and [date] between  #"&date1&"# and #"&date2&"# order by [date] asc"
回复 支持 反对

使用道具 举报

3#
发表于 2010-1-9 08:39:15 | 只看该作者
我在数据库中把date字段的属性从"日期/时间"格式转换成"数字"格式之后就能正常显示了,是不是"时间/日期"格式在传的时候有特殊要求啊?
回复 支持 反对

使用道具 举报

4#
发表于 2010-1-9 08:39:19 | 只看该作者
这样改是什么意思啊?
回复 支持 反对

使用道具 举报

5#
发表于 2010-1-9 08:39:23 | 只看该作者
这样改还是发生同样的错误啊!!!
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 19:44 , Processed in 0.125739 second(s), 8 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表