调用数据库最新的几条记录改用什么语句来定义啊
基本学习知道如何调用数据库的所有记录
<%
set conn=server.createobject("adodb.connection")
conn.open "driver={microsoft access driver (*.mdb)};dbq="&server.mappath("example1.mdb")
exec="select * from message"
set rs=server.createobject("adodb.recordset")
rs.open exec,conn,1,1
%>
<html>
<head>
<title>无标题文档</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<%
do while not rs.eof
%><tr>
<td>
<%=rs("name")%></td>
<td>
<%=rs("tel")%></td>
<td>
<%=rs("message")%>></td>
<td>
<%=rs("time")%></td>
</tr>
<%
rs.movenext
loop
%>
</table>
</body>
</html>
请教如何调用最新的N条记录!