0

我的应用程序中有以下 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

这是一个已知问题,还是我的查询有问题?

4

1 回答 1

0

这是一个完整的 sqlite 教程。请注意您的数据库版本。每次表结构更改时先更改它。

于 2013-07-05T12:27:28.487 回答