Sqlite3 和 PDO 与 ORDER BY 的问题

发布于 2024-08-28 02:33:07 字数 347 浏览 6 评论 0原文

我尝试

SELECT * FROM table ORDER BY column

通过 PHP 中的 PDO 对象使用 SQL 语句。问题是,当使用除 ID 之外的所有列名的名称时,我总是收到错误(在非对象上调用成员函数 fetchall() - 这意味着查询没有返回 PDO 对象)。当我查询

SELECT * FROM table ORDER BY ID

它的工作原理时。 ID 是 PRIMARY INTEGER KEY,所有其他列都是 TEXT 或 NUMERIC,它们都不适用于 ORDER BY 子句。

有什么想法吗?

I try to use the SQL statement

SELECT * FROM table ORDER BY column

via an PDO-Object in PHP. Problem is, that I always get an error (Call to a member function fetchall() on a non-object - that means, the query did not return a PDO-object) when using the names of all columnname EXCEPT for ID. When I query

SELECT * FROM table ORDER BY ID

it works. ID is the PRIMARY INTEGER KEY, all other columns are TEXT or NUMERIC, neither of them would works with the ORDER BY clause.

Any ideas?

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

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

发布评论

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

评论(2

↙温凉少女 2024-09-04 02:33:07

正如您在对 Frank Heikens 的回答的评论中所建议的那样,这可能是临时文件的问题。

http://www.sqlite.org/tempfiles.html 说:

2.6 瞬态索引

SQLite 可以利用瞬态索引来实现 SQL 语言功能,例如:

* ORDER BY 或 GROUP BY 子句
* 聚合查询中的 DISTINCT 关键字
* 由 UNION、EXCEPT 或 INTERSECT 连接的复合 SELECT 语句

每个临时索引都存储在其自己的临时文件中。

是否创建文件以及创建位置由 SQLITE_TEMP_STOREPRAGMA temp_storePRAGMA temp_store_directory 控制,请参阅 http://www.sqlite.org/pragma.html

It could be an issue with temporary files as you've suggested in your comment to Frank Heikens's answer.

http://www.sqlite.org/tempfiles.html says:

2.6 Transient Indices

SQLite may make use of transient indices to implement SQL language features such as:

* An ORDER BY or GROUP BY clause
* The DISTINCT keyword in an aggregate query
* Compound SELECT statements joined by UNION, EXCEPT, or INTERSECT

Each transient index is stored in its own temporary file.

If and where files are created is controlled by SQLITE_TEMP_STORE, PRAGMA temp_store and PRAGMA temp_store_directory , see http://www.sqlite.org/pragma.html

何处潇湘 2024-09-04 02:33:07

将您的 ORDER BY 语句替换为
按演员排序(列为真实)
它可以对 REAL 值进行排序。

Replace your ORDER BY statement with
ORDER BY CAST(COLUMN AS REAL).
It can sort REAL values.

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