日期:2014-05-17  浏览次数:21261 次

asp+access写了个查询语句 将表改名as 如何读取记录
set rs=server.CreateObject("adodb.recordset")
sql="select c.id,c.gonghao,c.xingming from maintb as c,tonghe as a where c.xingming=a.xingming"
rs.open sql,conn,1,2
response.Write(rs("c.id"))
response.End()


response.Write(rs("c.id")),为什么这样取不到值啊,access数据库

------解决方案--------------------
不能那么取值,直接用rs(0) 这个代表id
就可以了