0

结构是:

CREATE TABLE stopsbuses (_id INTEGER PRIMARY KEY, stop_id NUMERIC, bus_id NUMERIC, drive TEXT, day TEXT);
CREATE TABLE stopsbusestimes (_id INTEGER PRIMARY KEY, sb_id NUMERIC, timeh NUMERIC, timem NUMERIC);

当我执行这样的查询时:

SELECT timeh, timem FROM stopsbuses 
INNER JOIN stopsbusestimes ON stopsbuses._id = stopsbusestimes.sb_id 
WHERE stopsbuses.stop_id = 2 ORDER BY timeh asc, timem asc 

例如输出是:

[..]
7 1
7 31
7 34
7 54
7 57
7 22
[..]

相同的输出很简单:

SELECT timeh, timem FROM stopsbusestimes ORDER BY timeh, timem

使用 php + pdo、SQLite 数据库浏览器和 Android 应用程序的相同输出。

我在按两列排序时遗漏了什么吗?

4

1 回答 1

0

在 SQLite 中,所有字符串都排在所有数字后面,因此很可能22不是数字。

要查看类型,请尝试typeofquote

SELECT quote(timeh), quote(timem) FROM stopsbuses ...
于 2012-10-27T18:17:00.623 回答