資料庫逆序的
A. 怎麼讓網頁讀取資料庫後倒序顯示
按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
%>
B. 怎樣倒序獲取sql資料庫中的數據
你要是記不住哪個是倒序,哪個是順序,只要記住由小到大還有由大到小
DESC 很明顯比 ASC 長,也就是說DESC 是由大到小
ASC 短,就是由小到大;默認為ASC
select top 1 * from tables order by column_id desc 取的是最大的ID列的行;
C. SQL逆序查詢
以Id排序,降序寫,就象樓上的一樣``
嘿嘿 top 對ms的有用``對mysql 對應top的是limit
你理解錯了吧``我說的mysql中能實現top功能的是limit x,x
D. 怎麼讓資料庫展示的數據是倒序排列
按id號從小到大排列
sql = "select * from tablename order by id asc"
按id號從大到小排列
sql = "select * from tablename order by id desc"
E. 如何將資料庫中的內容按主鍵編號的倒序方式取出數據
select * | from ××表| order by 主鍵名稱 desc |go|
F. c#連接資料庫,如何倒序排列數據
SQL語句中採用ORDER BY X desc就可以了,X代表排序的欄位
G. PHP資料庫倒序問題
id倒敘輸出數據么,一條sql語句就可以了。
$con = mysql_connect('伺服器ip','user','pwd');
mysql_select_db('database',$con);
mysql_query('SET NAMES UTF8');
$sql = 'select * from table order by id desc';
$res = mysql_query($sql);
H. SQL 如何讓資料庫數據以倒序輸出
通過 」order by「實現,語法 :order by 欄位 asc/desc。
sql:select * from tablename order by filename1 desc;
解釋:上面語句的意思就是根據」filename1欄位「排序,倒敘輸出tablename表中的數據。
備註:asc是表示升序,desc表示降序。
I. sql中的排序,如何使用倒序
sql中排序倒序使用desc關鍵字,一般需要和order by 合用,示例sql語句如下:
例如:select * from student order by age desc;
意思是查詢學生表,以學生年紀倒序排列。
排序採用 order by 子句,order by 後面跟上排序欄位,排序欄位可以放多個,多個採用逗號間隔,order by默認採用升序(asc),如果存在 where 子句,那麼 order by 必須放到where 語句後面。
例如:select ename,job,ename from emp order by job desc,sal desc;
意思是查詢員工表按照 job 和薪水倒序排序 。
(9)資料庫逆序的擴展閱讀
sql中升序(正序)用法介紹:
1、使用asc關鍵字
例如:select ename,sal from emp order by sal asc;
手動指定按照薪水由小到大排序(升序關鍵字 asc)
2、不加asc關鍵字,系統默認升序
例如:select ename,job,sal from emp where job = 」MANAGER」order by sal;
取得job 為 MANAGER 的員工,按照薪水由小到大排序(系統默
認由小到大)
J. 如何修改使得資料庫查詢結果倒序顯示
select * from table order by id desc
最後一個關鍵字:desc,就是使用倒序排列的意思。