ASP表格循环显示数值时,怎么显示对应另一个表中字段值?
数据库为sql2000,ba_paytype表中有vccode字段值等于ba_account表中的vcpaytype字段值<td><%=list("vcpaytype")...
数据库为sql2000,ba_paytype 表中有vccode字段值 等于 ba_account表中的vcpaytype字段值
<td><%=list("vcpaytype")%></td> 这个地方怎么显示vcpaytype值等于ba_paytype表中vccode值对应的vcname值?
<%
dim bgtime,ovtime
bgtime=request.Form("bgtime")
ovtime=request.Form("ovtime")
%>
<%set list=conn.execute("select * from ba_account where dttime>='"&bgtime&"' and dttime<='"&ovtime&"' order by [vcreckno]")%>
<%set hmmoney=conn.execute("select sum(mmoney) from ba_account where dttime>='"&bgtime&"' and dttime<='"&ovtime&"' ")%>
<table border=1 cellpadding="0" cellspacing="0" bordercolor="#CCCCCC">
<tr>
<th nowrap="nowrap"><span class="STYLE3">付款方式</span></th>
<th nowrap="nowrap"><span class="STYLE3">单据号</span></th>
</tr>
<%do while not list.eof%>
<tr>
<td><%=list("vcpaytype")%></td> 这个地方想改成显示vcpaytype等于ba_paytype表中vccode对应的vcname,怎么改呢?
<td><%=list("vcreckno")%></td>
</tr>
<%
list.movenext
loop
%>
<tr>
<td colspan="8">合计:</td>
<td><strong><%=hmconsume("")%></strong></td>
<td><strong><%=hmagio("")%></strong></td>
</tr>
</table>
谢谢啦,,非常感谢!!!! 展开
<td><%=list("vcpaytype")%></td> 这个地方怎么显示vcpaytype值等于ba_paytype表中vccode值对应的vcname值?
<%
dim bgtime,ovtime
bgtime=request.Form("bgtime")
ovtime=request.Form("ovtime")
%>
<%set list=conn.execute("select * from ba_account where dttime>='"&bgtime&"' and dttime<='"&ovtime&"' order by [vcreckno]")%>
<%set hmmoney=conn.execute("select sum(mmoney) from ba_account where dttime>='"&bgtime&"' and dttime<='"&ovtime&"' ")%>
<table border=1 cellpadding="0" cellspacing="0" bordercolor="#CCCCCC">
<tr>
<th nowrap="nowrap"><span class="STYLE3">付款方式</span></th>
<th nowrap="nowrap"><span class="STYLE3">单据号</span></th>
</tr>
<%do while not list.eof%>
<tr>
<td><%=list("vcpaytype")%></td> 这个地方想改成显示vcpaytype等于ba_paytype表中vccode对应的vcname,怎么改呢?
<td><%=list("vcreckno")%></td>
</tr>
<%
list.movenext
loop
%>
<tr>
<td colspan="8">合计:</td>
<td><strong><%=hmconsume("")%></strong></td>
<td><strong><%=hmagio("")%></strong></td>
</tr>
</table>
谢谢啦,,非常感谢!!!! 展开
1个回答
展开全部
两个方法,第一个同是打开两个表,利用sql语句的条件语句。第二个方法更容易理解,但是繁琐点,在这个地方设置另外一个recorderset,然后用你新设置的recorderset对象打开表,要记得关闭。
追问
第一个同是打开两个表,利用sql语句的条件语句,
能不能写个例子,我还是不知道怎么写啊?
追答
rs.open "select * from table1,table2 where table1.字段1=table2.字段a",conn,1,1 大致就是这个样子,你多看下w3c里面的SQL,我其实遇到比较复杂的数据库查找问题就会去找对应的语句
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询