怎么让网页读取数据库后倒序显示

我用DW做的网页asp的怎么让网页从数据库读取后倒序显示ACCESS数据库在线等怎么加说清楚点我是菜鸟月简单越好说具体点放在那里啊我不懂我的数据库名字是1表名字是rrg... 我用DW做的网页 asp的 怎么让网页从数据库读取后倒序显示 ACCESS数据库 在线等

怎么加 说清楚点 我是菜鸟 月简单越好
说具体点 放在那里啊
我不懂 我的数据库名字是1 表名字是rrg
展开
 我来答
dongdng
2015-08-07 · TA获得超过8158个赞
知道大有可为答主
回答量:9168
采纳率:88%
帮助的人:2347万
展开全部
按id号从小到大排列
sql = "select * from tablename order by id asc"
按id号从大到小排列
sql = "select * from tablename order by id desc"

举例如下:
下面是一段正常的源码,它可以正常查询出倒序结果:
<!--#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
%>
51site
2010-04-14 · TA获得超过2853个赞
知道大有可为答主
回答量:1775
采纳率:0%
帮助的人:2249万
展开全部
select * from rrg order by Id desc
Id:是你要排序的标准,即按ID的升、降序来排列显示,当然你也可以选用你表里的其他字段为标准!
desc:排序方式:desc为降序,asc为升序
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
PS初级学手fp
2015-07-30 · TA获得超过922个赞
知道答主
回答量:371
采纳率:50%
帮助的人:70.7万
展开全部
1.select * from (select row_number() over(order by getdate()) as rid,* from syscolumns)t
2.order by rid desc
3.如果不要NULL值 加上where col is not null
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
nock001
2010-04-14 · TA获得超过201个赞
知道小有建树答主
回答量:411
采纳率:0%
帮助的人:229万
展开全部
select *
from table
order by str desc
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友1ed710d
2010-04-14 · 超过32用户采纳过TA的回答
知道小有建树答主
回答量:277
采纳率:0%
帮助的人:128万
展开全部
SQL语句嘛!简单的问题。。有人已经回答了。。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式