怎么让网页读取数据库后倒序显示
我用DW做的网页asp的怎么让网页从数据库读取后倒序显示ACCESS数据库在线等怎么加说清楚点我是菜鸟月简单越好说具体点放在那里啊我不懂我的数据库名字是1表名字是rrg...
我用DW做的网页 asp的 怎么让网页从数据库读取后倒序显示 ACCESS数据库 在线等
怎么加 说清楚点 我是菜鸟 月简单越好
说具体点 放在那里啊
我不懂 我的数据库名字是1 表名字是rrg 展开
怎么加 说清楚点 我是菜鸟 月简单越好
说具体点 放在那里啊
我不懂 我的数据库名字是1 表名字是rrg 展开
5个回答
展开全部
按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
%>
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
%>
展开全部
select * from rrg order by Id desc
Id:是你要排序的标准,即按ID的升、降序来排列显示,当然你也可以选用你表里的其他字段为标准!
desc:排序方式:desc为降序,asc为升序
Id:是你要排序的标准,即按ID的升、降序来排列显示,当然你也可以选用你表里的其他字段为标准!
desc:排序方式:desc为降序,asc为升序
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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
2.order by rid desc
3.如果不要NULL值 加上where col is not null
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select *
from table
order by str desc
from table
order by str desc
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
SQL语句嘛!简单的问题。。有人已经回答了。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询