| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 487 人关注过本帖
标题:[求助]各位,谁能指点我啊?
只看楼主 加入收藏
zfjian
Rank: 1
等 级:新手上路
帖 子:45
专家分:0
注 册:2006-7-20
收藏
 问题点数:0 回复次数:2 
[求助]各位,谁能指点我啊?

谁能帮我看看,这段代码哪里不对了。
出错显示:
错误类型:
Microsoft OLE DB Provider for ODBC Drivers (0x80040E07)
[Microsoft][ODBC Microsoft Access Driver] 标准表达式中数据类型不匹配。


<%

sql="select user.* from user,user_info where user.user_name like '%' and user.user_name=user_info.user_name"
if sex<>"无特别要求" then
sql=sql&" and sex='"&sex&"'"
end if
if married<>"无特别要求" then
sql=sql&" and married='"&married&"'"
end if

if relation<>"无特别要求" then
sql=sql&" and relation='"&relation&"'"
end if
if province<>"无特别要求" then
sql=sql&" and work_province='"&province&"'"
end if
'///////////////////////////


if height<>"无特别要求" and height<>"" then

if height="150厘米以下" then
sql=sql&" and height<150"
elseif height="150-154厘米" then
sql=sql&" and height>=150 and height<=154"
elseif height="155-159厘米" then
sql=sql&" and height>=155 and height<=159"
elseif height="160-164厘米" then
sql=sql&" and height>=160 and height<=164"
elseif height="165-169厘米" then
sql=sql&" and height>=165 and height<=169"
elseif height="170-174厘米" then
sql=sql&" and height>=170 and height<=174"
elseif height="175-179厘米" then
sql=sql&" and height>=175 and height<=179"
elseif height="180-184厘米" then
sql=sql&" and height>=180 and height<=184"
elseif height="185-189" then
sql=sql&" and height>=185 and height<=189"
elseif height="190-194厘米" then
sql=sql&" and height>=190 and height<=194"
elseif height="195-199厘米" then
sql=sql&" and height>=195 and height<=199"
elseif height="200厘米以上" then
sql=sql&" and height>=200"
end if



end if


''''''''''''''''
temp=year(date)
if age="1" then
byear=temp-18
sql=sql&" and byear>'"&byear&"'"
elseif age="2" then
sql=sql&" and byear<'"&temp-18&"'"
sql=sql&" and byear>'"&temp-25&"'"
elseif age="3" then
sql=sql&" and byear<'"&temp-24&"'"
sql=sql&" and byear>'"&temp-31&"'"
elseif age="4" then
sql=sql&" and byear<'"&temp-30&"'"
sql=sql&" and byear>'"&temp-41&"'"
elseif age="5" then
sql=sql&" and byear<'"&temp-40&"'"
end if
'///////////////////////////
if education="1" then
sql=sql&" and education='初中'"
elseif education="2" then
sql=sql&" and education in('高中','专科','本科','硕士','博士')"
elseif education="3" then
sql=sql&" and education in('专科','本科','硕士','博士')"
elseif education="4" then
sql=sql&" and education in('本科','硕士','博士')"
elseif education="5" then
sql=sql&" and education in('硕士','博士')"
elseif education="6" then
sql=sql&" and education='博士'"
end if

'////////////////////////////////

if salary<>"无特别要求" then
sql=sql&" and salary='"&salary&"'"


end if

'////////////////////////////////////////
set rs3=server.CreateObject ("ADODB.recordset")
rs3.Open sql,conn1,3
'Response.Write "<P>"&sql&"</P>"
'Response.End
%>


[此贴子已经被作者于2006-8-27 13:04:49编辑过]

搜索更多相关主题的帖子: like sql Microsoft 表达式 where 
2006-08-27 12:26
渚薰
Rank: 6Rank: 6
等 级:贵宾
威 望:22
帖 子:1132
专家分:0
注 册:2006-8-6
收藏
得分:0 

数据库里byear和salary是什么类型的?
你sql语句里它们用的是字符串型,如果数据库里数字型,就出错了


个人ajax技术专题站: " target="_blank">http://www. 我不会闲你烦,只会闲你不够烦!
2006-08-27 12:53
zfjian
Rank: 1
等 级:新手上路
帖 子:45
专家分:0
注 册:2006-7-20
收藏
得分:0 
我用的字符串型的
2006-08-27 12:57
快速回复:[求助]各位,谁能指点我啊?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.027917 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved