请教一个把ID转换成name的问题~
ChatLog 表是这样的charid charname chatdata chattime
2 NULL(空的) 你好啊 12:10
3 李 好~ 12:10
2 NULL(空的) 在干什么 12:10
2 张 没 12:10
3 NULL(空的) ```` 12:10
2 张 ```` 12:10
......................................这个表后面还有很多数据
<!--#include file="./incc/chatlogdx.asp" -->
<%
set rs2=server.CreateObject("adodb.recordset")
sql2="SELECT TOP 200 * FROM ChatLog WHERE chattype=5 ORDER BY row deSC"
rs2.open sql2,conn2,1,1
%>
<style type="text/css">
<!--
body {
background-color: #f1d277;
}
-->
</style>
<style type="text/css">
<!--
.STYLE6 {font-size: 12px}
-->
</style>
<%do while not rs2.eof%>
<table width="100%" border="0">
<td width="80%"><span class="STYLE6">角色ID <%=rs2("charid")%> 这里怎么新增charID转换以后的角色名字:<%=rs2("chatdata")%></span></td>
<td width="20%"><span class="STYLE6">[<%=rs2("chattime")%>]</span></td>
</table>
<%rs2.movenext
loop
rs2.close:set rs2=nothing
conn2.close:set conn2=nothing
%>