mysql 数据库中提交的最后结果
我如何获得 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果该表上没有时间戳或自动增量字段,则不能。
否则:
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
如果您使用 auto_increment 主键,则非常简单:
If you are using an auto_increment primary key, its as simple as:
请参阅下面的查询,下面的 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