ASP如何实现多表查询 急……
在ASP中查询一个数据库表用“select * from 表名”就行了,要是查询两个表是不是和在SQL里面的查询语句一样啊,用"cross join"为什么我的报错。
为什么啊?
Microsoft OLE DB Provider for ODBC Drivers (0x80040E21)ODBC 驱动程序不支持所需的属性。
/mylee/04261/detailed.asp, 第 14 行
<%
exec = "select Connects.TrueName,Phone,MorePhone,Connects.OICQ,Connects.email,Connects.Department,Connects.ConnectAddress,Students.Sex,Students.Birthday,Students.Provice,Students.Address,Students.QQ from Connects inner join Students on Connects.TrueName=Students.TrueName where Connects.TrueName= " + strid
set rs = server.createobject("adodb.recordset")
rs.open exec,conn,1,1
%>
第14行是rs.open exec,conn,1,1