应用限制后,我可以重新排序 SQL 选择吗?

2022-01-23 00:00:00 sql subquery mysql

我想按 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.

相关文章