摘要: conn.execute、rs.open之间的差别,conn.execute、rs.open、command.execute方法用法大大不同通常形成记录集可以使用 Setrs=conn.execute(SQL)或直接rs=CONN.execute(SQL)和 Setrs=Server.CreateObject("ADODB.Recordset") rs.openSQL,CONN,0,1或rs.op... 阅读全文
posted @ 2010-05-20 14:40 龙圆 阅读(37408) 评论(0) 推荐(1) 编辑
摘要: 给个通俗的解释吧. 例表a aid adate 1 a1 2 a2 3 a3 表b bid bdate 1 b1 2 b2 4 b4 两个表a,b相连接,要取出id相同的字段 select * from a inner join b on a.aid = b.bid这是仅取出匹配的数据. 此时的取出的是: 1 a1 b1 2 a2 b2 那么left join 指: select * from a... 阅读全文
posted @ 2010-05-20 10:56 龙圆 阅读(585) 评论(0) 推荐(1) 编辑