信息-请帮我看看这段代码有什么问题,提示查询语句出错。

问题描述

请帮我看看这段代码有什么问题,提示查询语句出错。

<%
set rs=server.CreateObject("ADODB.Recordset")
dim temp ,I
dim posid,posname, branch, manager, checktime,bz,mainpic,checkpic,checkquarter,group
temp=request.Form("input")
select case request.Form("search")
if session("group")="兴化" then
case 0 sql="select * from check where group='兴化' and posid like '%"&temp&"%' order by checktime asc"
case 1 sql="select * from check where group='兴化' and posname like '%"&temp&"%' order by checktime asc"
end if
if session("group")="泰州" then
case 0 sql="select * from check where posid like '%"&temp&"%' order by checktime asc"

case 1 sql="select * from check where posname like '%"&temp&"%' order by checktime asc"
end if

end select
Rs.open sql, conn,1,1

if temp="" then

response.write "&quot; &amp; chr(13) &amp; &quot;alert('请输入检索条件!');&quot; &amp; &quot;history.back()&quot; &amp; &quot;"
end if
if rs.EOF then
response.write "

没有找到相关信息!

"
response.end
end if
%>

解决方案

from后面没有写表名

 if session("group")="兴化" then
case 0 sql="select * from 这里没有写表名 where group='兴化' and posid like '%"&temp&"%' order by checktime asc"
case 1 sql="select * from 这里没有写表名 where group='兴化' and posname like '%"&temp&"%' order by checktime asc"
end if

解决方案二:

发问题的时候贴漏了,提示“缺少语句”运行环境是ASP

解决方案三:

看着一个等号,就会想到就赋值
看到两个等号,才会想到判断
不知道在这里是不是也这样

时间: 2024-12-02 21:51:56

信息-请帮我看看这段代码有什么问题,提示查询语句出错。的相关文章

xmlentities-在xml文档中插入图片总是失败,请大家帮我看看这段代码错在哪里了?

问题描述 在xml文档中插入图片总是失败,请大家帮我看看这段代码错在哪里了? <?xml version="1.0" encoding="GB2312"?> <!DOCTYPE photos[ <!ELEMENT photos (photo*)> <!ELEMENT photo EMPTY> <!ATTLIST photo Sources ENTITIES #REQUIRED> <!ENTITY ic1 S

process-请大家帮我看看两段代码的区别真想不明白了

问题描述 请大家帮我看看两段代码的区别真想不明白了 有两段代码 代码一是单独写成函数来调用的, 我把他们合成一个主函数的代码 就出错 ?好像是变量递增的问题,我怎么也想不通,麻烦大家了. 代码一 ?别人写的: #include #include #include #include #pragma comment(lib,"Psapi.lib") int FindModules( DWORD processID ) { ? ? HMODULE hMods[1024]; ? ? HANDL

for-谁帮我改改这段代码问题出在哪里?

问题描述 谁帮我改改这段代码问题出在哪里? int score; //每门课成绩 int sum = 0; //成绩之和 double avg = 0.0; //平均分 Console.WriteLine(""请输入学生姓名:""); string name = Console.ReadLine(); for (int i = 0; i < 5; i++) { Console.Write(""请输入五门课中第""+(i+

string-各位大大帮我看看这段代码哪里有误急啊!!!!!

问题描述 各位大大帮我看看这段代码哪里有误急啊!!!!! OutputStream fos=null; InputStream is = getResources().openRawResource(Shuzu.tupians[poistion]); Log.e("当前的数组里面的是什么呢", "Shuzu.tupians[poistion]"+Shuzu.tupians[poistion]); Log.e("65656565656565656565656

servlet-大神帮看下这段代码我想把文件上传到webroot下的upload文件夹该怎么改啊

问题描述 大神帮看下这段代码我想把文件上传到webroot下的upload文件夹该怎么改啊 package com.chamber.controller.upload; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.util.Iterator;

用java开发一个安卓客户端在线交流APP,是怎么实现添加好友的?求大神帮我看看这段代码。

问题描述 用java开发一个安卓客户端在线交流APP,是怎么实现添加好友的?求大神帮我看看这段代码. private void submit() { dialog = ProgressDialog.show(this, "提示", "处理中.."); new AsyncTask() { @Override protected String doInBackground(String... params) { String urlString = AppConstan

哪位大神帮我注释这段代码,最好详细一点(AT89s**与霍尔元件测速报警应用)。有附电路的原理图

问题描述 哪位大神帮我注释这段代码,最好详细一点(AT89s**与霍尔元件测速报警应用).有附电路的原理图 5C #includeunsigned char code table[12]={0xc00xf90xa40xb00x990x920x820xf80x800x900xff0xBF};unsigned char code table2[12]={0x400x790x240x300x190x120x020x780x000x100xff}; sbit CS3020=P1^0;sbit SET=P

图片-刚学c语言,各位大大帮我看看这段代码哪里有错,谢谢啦

问题描述 刚学c语言,各位大大帮我看看这段代码哪里有错,谢谢啦 题目是判断一个数是否能被3整除 解决方案 第一,主函数里调用函数方法即可,不可以定义函数:第二,你的函数名不规范,一般很少用一个单字母表示函数,当然f除外(习惯不好),可以命名为Divide_3.第三,返回值最好用宏定义设计为True或者False,逻辑更清晰. 解决方案二: main函数中调用x()函数#include int main(){x(s);}int x(int s){....} 解决方案三: 这个太基础了,你应该多看点

sqlhelper-求大神帮我把这段代码注释下,看不懂啊

问题描述 求大神帮我把这段代码注释下,看不懂啊 SqlParameter[] arParms = new SqlParameter[2]; arParms[0] = new SqlParameter(""@userid"" enamestr); arParms[0].Direction = ParameterDirection.Input; arParms[2] = new SqlParameter(""@right"" Sq