gpt4 book ai didi

php - 如何使用 PHP 获取 MySQL 数据库表中的最后一条记录?

转载 作者:可可西里 更新时间:2023-11-01 06:39:12 24 4
gpt4 key购买 nike

我想使用 PHP 获取 MySQL 数据库表中的最后一个结果。我该怎么做呢?

我在表格中有 2 列,MessageID(auto) 和 Message。

我已经知道如何连接到数据库了。

最佳答案

使用mysql_query :

<?php
$result = mysql_query('SELECT t.messageid, t.message
FROM TABLE t
ORDER BY t.messageid DESC
LIMIT 1') or die('Invalid query: ' . mysql_error());

//print values to screen
while ($row = mysql_fetch_assoc($result)) {
echo $row['messageid'];
echo $row['message'];
}

// Free the resources associated with the result set
// This is done automatically at the end of the script
mysql_free_result($result);

?>

SQL 查询:

  SELECT t.messageid, t.message 
FROM TABLE t
ORDER BY t.messageid DESC
LIMIT 1

...使用 ORDER BY 设置值,因此最高值是结果集中的第一行。 LIMIT 表示在所有这些行中,只有第一行实际返回到结果集中。因为messageid是自增的,最高值是最近的...

关于php - 如何使用 PHP 获取 MySQL 数据库表中的最后一条记录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3411092/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com