asp中sql查询语句的问题
数据库中有news 和lm两张表,news表中有lm和pic字段,lm表中有lmid字段,我现在想查询news表中pic字段中的含有图片信息的内容,但又不需要news表的lm字段中lm=13的所有内容,或者是需要lm表中lmid=1的内容,与是我使用sql = "select top 5 * from news where pic<>'' and lm<>'13'" 语句,结果产生这样的错误:lm里面有记录,但 错误类型:
ADODB.Field (0x800A0BCD)
BOF 或 EOF 中有一个是“真”,或者当前的记录已被删除,所需的操作要求一个当前的记录。
/index.asp, 第 223 行
如果改成lm里面没有的记录,如:select top 5 * from news where pic<>'' and lm<>'100'反而正常,select top 5 * from news where pic<>'' and lm='13' 也正常,这是怎么回事?以上说的正常都是程序运行正常,并不表示能达到我想要的效果,后来我又用sql = "select top 5 * from news where (pic<>''(select * from lm where lmid='1'))"和 sql = "select top 5 * from news where pic<>'' inner join lm where lmid='1'",都报错,哪位老鸟能告诉我该怎么写,万分感谢!急等。。。。。。
附:set rs = server.CreateObject ("adodb.recordset")
sql = "select top 5 * from news where pic<>'' and lm<>'13'"
rs.open sql,conn,1,1
if not (rs.eof and rs.bof) then
pic1=rs("pic")
link1=rs("url")
text1=rs("title")
rs.movenext
pic2=rs("pic")
link2=rs("url")
text2=rs("title")
rs.movenext
pic3=rs("pic")
link3=rs("url")
text3=rs("title")
rs.movenext
pic4=rs("pic")
link4=rs("url")
text4=rs("title")
rs.movenext
pic5=rs("pic")
link5=rs("url")
text5=rs("title")
end if
rs.close
set rs=nothing
conn.close
set conn=nothing
向这样加上判断语句后,
错误类型:
ADODB.Field (0x800A0BCD)
BOF 或 EOF 中有一个是“真”,或者当前的记录已被删除,所需的操作要求一个当前的记录。