我的应用程序中有以下 SQL 查询。它在我的 Nexus 7 上运行没有任何问题,但崩溃并显示有关“标题”列的消息在早期版本的 Android 上不存在。
SELECT feeds._id AS _id, feeds.title, feeds.description, feeds.image,
feeds.groupName, count(items._id) AS itemCount, sum(case when items.read = 0
then 1 end) as unreadCount FROM feeds LEFT JOIN items ON (items.feedId = feeds._id)
GROUP BY feeds._id ORDER BY feeds.groupName
这是一个已知问题,还是我的查询有问题?