How to use selects in join clauses in Android 2.1?
I have a query that does some magical sort-group-joining that works just fine on Android 2.2 (froyo) version of SQLite:
SELECT channels.*, p.*
FROM channels
LEFT JOIN programs p ON channels._id = p.channel_id
JOIN (select p2.channel_id, max(p2.airdate) max_air FROM programs p2
GROUP BY p2.channel_id) pj
ON pj.channel_id = p.channel_id AND pj.max_air = p.airda开发者_Go百科te
ORDER BY channels.channel_index asc;
For some reason, the join doesn't work with Android 2.1 but fails with
no such column: pj.channel_id
I reckon this is because SQLite has been upgraded from 2.1 to 2.2, but what would be the proper SQL that works for both versions?
The resolution was simple, I just needed to drop the alias "p":
SELECT channels.*, programs.*
FROM channels
LEFT JOIN programs ON channels._id = programs.channel_id
JOIN (select p2.channel_id channel_id, max(p2.airdate) max_air FROM programs p2
GROUP BY p2.channel_id) pj
ON pj.channel_id = programs.channel_id AND pj.max_air = programs.airdate
精彩评论