如何修改使得数据库查询结果倒序显示?

下面是一段正常的源码,它可以正常查询出倒序结果:<!--#includefile="conn.asp"--><head><title>回眸一笑</title><style... 下面是一段正常的源码,它可以正常查询出倒序结果:
<!--#include file="conn.asp" -->

<head>

<title> 回眸一笑</title>

<style><!--@import url(in/index.css);--></style>
<style><!--@import url(in/layer.css);body,td,th {
font-family: 宋体;
color: #000;
}
--></style>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312"></head>

<body text="#000000" >

<div id="newest">
<div id="ntitle" align="right">最新10篇帖子:</div>
<div id="space"></div>
<div id="nmarquee">
<table width="100%" height="12" border="0" cellpadding="0" cellspacing="0">
<tr>
<td id=demo1>
<table width="100%" height="35" border="0" cellpadding="0" cellspacing="0">
<tr>
<%
Dim nSql
nSql="Select top 10 * From [Dv_Topic] Order By TopicID DESC"

Dim nRs
Set nRs=Server.CreateObject("ADODB.RecordSet")
nRs.Open nSql,Conn1,1,1
while not nRs.eof
%>
<td height="17"><table width="500"><tr><td width="492" height="10">

<a href='../../xiabbs/Dvbbs8.2.0_Ac/dispbbs.asp?TopicIDid=<%=nRs("TopicID")%>'>
<strong><font color="#333366"><%=left(nRs("PostUserName"),5)%></font></strong>
<font color="#FF3366"> 发贴于 </font>
<strong><font color="#333366"><%=left(nRs("DateAndTime"),12)%></font></strong>:<%=left(nRs("Title"),20)%>
</a></td></tr></table></td>
<%
nRs.movenext
wend
nRs.close:set nRs = nothing
%>
但是我想把它的链接更改,使它指向其它ID,但查询结果却顺序显示了。代码如下:
<!--#include file="conn.asp" -->

<head>

<title>回眸一笑</title>

<style><!--@import url(in/index.css);--></style>
<style><!--@import url(in/layer.css);body,td,th {
font-family: 宋体;
color: #000;
}
--></style>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312"></head>

<body text="#000000" >

<div id="newest">
<div id="ntitle" align="right">最新10篇帖子:</div>
<div id="space"></div>
<div id="nmarquee">
<table width="100%" height="12" border="0" cellpadding="0" cellspacing="0">
<tr>
<td id=demo1>
<table width="100%" height="35" border="0" cellpadding="0" cellspacing="0">
<tr>
<%
Dim nSql
nSql="Select top 10 * From [Dv_Topic] Order By TopicID DESC"
nSql="Select top 10 * From [Dv_Topic] Order By boardid DESC"<!--这里添加了查询表,以为下面链接提供ID链接-->

Dim nRs
Set nRs=Server.CreateObject("ADODB.RecordSet")
nRs.Open nSql,Conn1,1,1
while not nRs.eof
%>
<td height="17"><table width="500"><tr><td width="492" height="10">
<!--下面的链接添加了boardid以便动态链接。-->
<a href='../../xiabbs/Dvbbs8.2.0_Ac/dispbbs.asp?boardid=<%=nRs("boardid")%>&id=<%=nRs("TopicID")%>'>
<strong><font color="#333366"><%=left(nRs("PostUserName"),5)%></font></strong>
<font color="#FF3366"> 发贴于 </font>
<strong><font color="#333366"><%=left(nRs("DateAndTime"),12)%></font></strong>:<%=left(nRs("Title"),20)%>
</a></td></tr></table></td>
<%
nRs.movenext
wend
nRs.close:set nRs = nothing
%>
令我满意的我把身上所有分都给他。
展开
 我来答
5208882
2009-09-14 · TA获得超过592个赞
知道小有建树答主
回答量:616
采纳率:0%
帮助的人:713万
展开全部
你有2个查询语句,2个nSql,这样设置是矛盾的,建议改成查询语句:
Sql="Select top 10 * From [Dv_Topic] Order By TopicID DESC,boardid DESC"
这样就可以了,优先TopicID倒序再按boardid倒序,你试试!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
jxguo2003
推荐于2016-05-23
知道答主
回答量:6
采纳率:0%
帮助的人:0
展开全部
Dv_Topic里boardid和TopicID字段都有吧?
nSql="Select top 10 * From [Dv_Topic] Order By boardid DESC" 你这句ORDER BY boardid了嘛。用Order By TopicID DESC不就好了
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
知三四郎
2015-09-22 · TA获得超过616个赞
知道小有建树答主
回答量:1172
采纳率:63%
帮助的人:735万
展开全部
select * from table order by id desc

最后一个关键字:desc,就是使用倒序排列的意思。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
foreverqt
2009-09-14 · 超过43用户采纳过TA的回答
知道答主
回答量:154
采纳率:0%
帮助的人:133万
展开全部
你的boardid和topPICID是同一条记录嘛?我觉得你的那个查询语句不应该是这样写的!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
43662085
2015-11-12 · TA获得超过730个赞
知道小有建树答主
回答量:468
采纳率:0%
帮助的人:324万
展开全部
select * from emp order by emp.empno desc;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式