应用限制后,我可以重新排序 SQL 选择吗? [英] Can I reorder SQL selections after the limit has been applied?

查看:39
本文介绍了应用限制后,我可以重新排序 SQL 选择吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想按 ID 顺序查看我们的 mysql 数据库中的最后十行.天真地,我希望能够做这样的事情:

I'd like to see the last ten rows from our mysql database in ID order. Naively, I'd expect to be able to do something like this:

SELECT * FROM ( SELECT * FROM things ORDER BY id DESC LIMIT 10) ORDER BY id ASC

但这不是有效的语法.表达我要运行的查询的正确方法是什么?

but that isn't valid syntax. What's the correct way of expressing the query I'm trying to run?

推荐答案

你猜对了:

SELECT * 
FROM 
  ( SELECT * FROM things ORDER BY id DESC LIMIT 10) xxx
ORDER BY id ASC

注意你需要的子选择之后的无辜xxx.

Note the innocent xxx after the subselect which you need.

这篇关于应用限制后,我可以重新排序 SQL 选择吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆