“语法错误 (逗号) 在查询表达式id=20, 21”,怎么处理这个逗号?

来源:asp之家 时间:2009-09-18 14:52:00 

我用asp+access写程序,   

sql="select   *   from   book   where   id="   
sql=sql   &temp   
  temp是从上个页面传来的显示记录的标号(最多可以选2条记录)   
    
    dim   temp   
      temp=Request("bookchange")   
      if   temp=""   then   
              temp=1   
      end   if   
    
  如果temp传来的是2个数字,我测试了一下,系统报错:   
  错误类型:   
  Microsoft   OLE   DB   Provider   for   ODBC   Drivers   (0x80040E14)   
  [Microsoft][ODBC   Microsoft   Access   Driver]   语法错误   (逗号)   在查询表达式   'id=20,   21'   中。   
  /bookmanage/lendbook.asp,   第   14   行   
    
  怎末处理,请教呀!

用in   
  sql="select   *   from   book   where   id   in   ("   
  sql=sql   &temp   &   ")"   


在sql语句里用in()   
  sql="select   *   from   book   where   id   in   ("&temp&")"


aa=split(temp,',')   
  for   i=0   to   ubound(aa)   
          te=te&"'"&aa(i)&"',"   
  next   
  te=left(te,len(te)-1)   
    
  sql="select   *   from   book   where   id   in   ("&te&")"



StrArr   =   split(temp,   ",")   
  sql="select   *   from   book   where"   
  For   i   =   0   To   UBound(StrArr)   
      StrSQL   =   StrSQL   &   "id   =   '"   &   Trim(StrArr(i))   &   "'"   
      If   i   <   UBound(StrArr)   Then   StrSQL   =   StrSQL   &   "   OR   "   
  Next   
    
  这种应该会比较有效,用in的话,当传过来的是2135,3521的话,会不会连21,13,15等等的记录都加进去呢?没有验证过,不太清楚。

这样就可以了,不用split,不会出错。temp为空的时候要判断一下。   
  最好在提交的时候就规范一下,不要出现只有逗号没有数字的情况。   
  temp=trim(request(temp))   
  if   temp<>""   then   temp="   where   id="   &   temp   
  temp=replac(temp,",","   or   id=")   
  sql="select   *   from   book   "   &   temp   


temp=replac(temp,",","   or   id=")   
    
  这个方法不错   


如果程序运行不正确试试下面的语句:   
  temp=replac(temp,",   ","   or   id=")

标签:语法,查询,sql
0
投稿

猜你喜欢

  • Python数据可视化绘图实例详解

    2022-06-11 15:51:27
  • pycharm如何为函数插入文档注释

    2023-09-13 09:53:56
  • 使用urllib库的urlretrieve()方法下载网络文件到本地的方法

    2021-11-27 11:21:08
  • Python多线程与同步机制浅析

    2021-10-31 03:22:51
  • Vue.js directive自定义指令详解

    2024-05-28 15:46:18
  • python使用tkinter模块实现文件选择功能

    2022-06-18 18:35:56
  • 关于Tensorflow中的tf.train.batch函数的使用

    2023-11-04 19:49:54
  • pandas读取csv文件,分隔符参数sep的实例

    2021-05-03 11:38:58
  • MySQL5.7 JSON类型使用详解

    2024-01-15 23:57:04
  • Python中使用subprocess库创建附加进程

    2022-01-01 06:30:25
  • VS2019创建MFC程序的实现方法

    2023-03-30 09:32:34
  • TensorFlow如何实现反向传播

    2023-07-04 08:44:36
  • CentOS7.2安装MySql5.7并开启远程连接授权的教程

    2024-01-16 15:40:58
  • mysql 分页优化解析

    2024-01-15 00:33:40
  • js中int和string数据类型互相转化实例

    2024-05-02 17:25:57
  • 深入分析C#连接Oracle数据库的连接字符串详解

    2024-01-20 23:46:29
  • python爬取豆瓣评论制作词云代码

    2023-03-14 04:31:40
  • Vue项目服务器部署刷新页面404问题及解决

    2024-04-09 10:47:22
  • sql server 中合并某个字段值的实例

    2024-01-13 02:39:59
  • Python数据处理之pd.Series()函数的基本使用

    2022-09-29 08:50:21
  • asp之家 网络编程 m.aspxhome.com