php連線mysql資料庫執行查詢語句後排序後再輸出

2021-12-24 02:26:06 字數 1371 閱讀 3029

1樓:匿名使用者

select * from table order by id desc

查詢 所有 來自 table表 排序 按照 id 降序,desc 代表降序,asc 代表升序

2樓:一水狂歌

<?

$sql="select * from news where 條件 order by id desc";

$rs=mysql_query($sql);

$row=mysql_fetch_array($rs);

while($row)

?>

3樓:聖鸞

$link = mysql_connect('localhost', '資料庫使用者', '資料庫密碼');

$db_list = mysql_list_dbs($link);

while ($row = mysql_fetch_object($db_list))

$result = mysql_list_tables($dbname);

while ($row = mysql_fetch_row($result))

mysql_free_result($result);

$db=mysql_select_db($dbname,$link); //選擇目標資料庫名

$query=mysql_query("select * from limit 0,1"); //查詢1條記錄

$r=mysql_fetch_array($query); //將查詢結果的值賦給$r

print_r($r); //一條資料

4樓:匿名使用者

你的情況直接使用排序語句就可以

select id, type

from news

where

order by id desc

php執行mysql語句返回如何處理

5樓:匿名使用者

mysql_query()函式執行過後,是一個mysql擴充套件的內部物件哦,也可以說是一個控制代碼,並不是一個結果集。

它所得到的那個$ret,你需要使用mysql_fetch_row()、mysql_fetch_assoc()、mysql_fetch_array()以及mysql_fetch_field()這樣的函式來取得它的結果集才行哦親。

你的程式在:

$ret = mysql_query($sql,$con);

一行下面,需要加上:

$result = mysql_fetch_array($ret);

之後,你再print_r或者var_dump($ret),你就可以看到結果了哦。

php連線mysql資料庫如何新增公共的配置檔案

php物件導向檔名db.class.php header content type text html charset utf 8 class db function query sql function numrows sql function getone sql function getall...

php備份恢復MYSQL資料庫,php對mysql資料庫的備份及還原

mysql備份最好就是用myqsqldump,如果php支援exec 函式就可以直接呼叫mysqldump進行備份,匯入也是一個,直接通過exec 呼叫mysql,再大的資料也不是問題.php備份恢復mysql資料庫 1 把資料庫sql檔案查詢 character 替換成 character set...

如何用Eclipse連線MySQL資料庫

步驟1.在工程上右鍵,選擇new floder2.建立lib包 3.把mysql下的jar包複製 4.在工程lib包下貼上過來 5.在mysql的jar包上右鍵選擇 build path add to build path 6在工程中新建類 7.輸入如下 8.執行之後,輸出如下,證明資料庫連線成功!...