SQLite - 排序问题

时间:2009-04-28 10:49:01

标签: sqlite

我使用以下查询按字母顺序显示数据库行:

SELECT word_id FROM table1 ORDER BY word ASC

但我想从table2获取值,其中我没有列“word”,并按表1中的“word”列进行排序。

我想要这样的事情:

SELECT word_id FROM table2 ORDER BY table1.word ASC

提前谢谢。

1 个答案:

答案 0 :(得分:4)

您必须使用联接连接两个表:

SELECT t2.word_id
FROM table2 t2
   , table1 t1
WHERE t2.word_id = t1.word_id  -- this is the join
ORDER BY t1.word ASC