关于asp查询数据库的问题?
如何用asp多分段筛选access数据库?比如:"index.asp?id=1" (这一段筛选access数据库记录).如何在"index.asp?id=1"的基础上在筛选另一个表中access一条数据库的记录,也就是在“index.asp?id=1”筛选出两条记录。如编写?[此贴子已经被作者于2006-3-2 11:44:52编辑过]
[此贴子已经被作者于2006-3-2 11:44:52编辑过]
用left join 或者就是select table1.key1,table2.key2 from table1,table2 where table1.key=table2.key
left join
select table1.key1,table2.key2 from table1 left join table2 on table1.key=table2.key where 其他条件
[此贴子已经被作者于2006-3-2 12:57:38编辑过]