mysql 数据库中提交的最后结果

发布于 2024-09-01 03:08:33 字数 76 浏览 12 评论 0原文

我如何获得 mysql 数据库行中提交的最后 20 个结果。

我需要最近 20 个用户提交的结果。

干杯。

How would i get the last 20 results submitted in a mysql db row.

I need the 20 most recent user submitted results.

Cheers.

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

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

发布评论

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

评论(3

别闹i 2024-09-08 03:08:33

如果该表上没有时间戳或自动增量字段,则不能。

否则:select * from table order by id desc limit 0,20

If you don't have timestamp or autoincrement field on that table then you can't.

Otherwise : select * from table order by id desc limit 0,20

沫尐诺 2024-09-08 03:08:33

如果您使用 auto_increment 主键,则非常简单:

SELECT * FROM that_table
ORDER BY auto_increment_primary_key DESC
LIMIT 0, 20

If you are using an auto_increment primary key, its as simple as:

SELECT * FROM that_table
ORDER BY auto_increment_primary_key DESC
LIMIT 0, 20
左秋 2024-09-08 03:08:33

请参阅下面的查询,下面的 mysql 语法中有一个可用的函数


按 DESC 限制 0,20 从订单中选择

See the Query below, there is an function available in mysql syntax below


SELECT FROM ORDER BY DESC LIMIT 0,20

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