我需要 MySQL SELECT 查询方面的帮助

发布于 2024-10-18 07:27:39 字数 167 浏览 2 评论 0原文

我需要帮助来编写一个 MySQL 查询,该查询将为我执行以下操作:

它将从某个列中选择最后一行。假设表名是“mysite_codes”,列名是“code”,这一列中有很多行,但我希望查询获取最后添加的行并在 PHP 中返回一个结果(LIMIT 1 件事) 。

有人可以帮我解决这个问题吗?

I need help to write a MySQL query that would do the following for me:

It would select the last row from a certain column. Let's say the table name is 'mysite_codes' and the column name is 'code', there are many rows in this column, but I want the query to take the last added one and get my back one result in PHP (LIMIT 1 thing).

Would anyone please help me with this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

尤怨 2024-10-25 07:27:39

MySQL 表没有固有的排序。如果您想要“最后添加的”,那么您需要一个 AUTO_INCRMENTing 列,例如 id

然后就可以写了。

SELECT `code` FROM `mysite_codes` ORDER BY `id` DESC LIMIT 1

只获取 id 值最高的行。

MySQL tables have no inherent sorting. If you want "the last added one" then you'll need an AUTO_INCREMENTing column like id.

Then you can write.

SELECT `code` FROM `mysite_codes` ORDER BY `id` DESC LIMIT 1

to get just the row with the highest id value.

瑕疵 2024-10-25 07:27:39

试试这个:

select code
  from mysite_codes
 order by add_date desc
 limit 1

Try this:

select code
  from mysite_codes
 order by add_date desc
 limit 1
北渚 2024-10-25 07:27:39

假设您有一个名为“auto_id_column”的自动递增 id 列:

SELECT code FROM mysite_codes ORDER BY auto_id_column DESC LIMIT 0, 1;

Assuming you have an auto-incremementing id column called something like "auto_id_column":

SELECT code FROM mysite_codes ORDER BY auto_id_column DESC LIMIT 0, 1;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文