如何修改使得数据库查询结果倒序显示?
下面是一段正常的源码,它可以正常查询出倒序结果:<!--#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
%>
令我满意的我把身上所有分都给他。 展开
<!--#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
%>
令我满意的我把身上所有分都给他。 展开
5个回答
展开全部
你有2个查询语句,2个nSql,这样设置是矛盾的,建议改成查询语句:
Sql="Select top 10 * From [Dv_Topic] Order By TopicID DESC,boardid DESC"
这样就可以了,优先TopicID倒序再按boardid倒序,你试试!
Sql="Select top 10 * From [Dv_Topic] Order By TopicID DESC,boardid DESC"
这样就可以了,优先TopicID倒序再按boardid倒序,你试试!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Dv_Topic里boardid和TopicID字段都有吧?
nSql="Select top 10 * From [Dv_Topic] Order By boardid DESC" 你这句ORDER BY boardid了嘛。用Order By TopicID DESC不就好了
nSql="Select top 10 * From [Dv_Topic] Order By boardid DESC" 你这句ORDER BY boardid了嘛。用Order By TopicID DESC不就好了
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select * from table order by id desc
最后一个关键字:desc,就是使用倒序排列的意思。
最后一个关键字:desc,就是使用倒序排列的意思。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你的boardid和topPICID是同一条记录嘛?我觉得你的那个查询语句不应该是这样写的!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select * from emp order by emp.empno desc;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询