Android Room Persistent Library - 在mysql上运行的sql查询,但不在Room中

时间:2017-07-18 15:53:57

标签: android mysql sqlite android-room

我正在尝试从消息构建会话,mid是消息ID,tid是线程ID。

mid和tid是字符串,时间很长。

我有以下查询工作,它在mysql(Ubuntu)上运行正常但是当我将它复制到Room的@Query参数时,它只选择所有消息。

select * from messages as a inner join (select tid, max(time) as time from messages group by tid) as b on a.tid = b.tid and a.time = b.time

This is the result i am expecting.

图像显示结果,我期待在android。

0 个答案:

没有答案