ContentProvider中的内部子选择?

时间:2012-02-14 06:53:02

标签: android sqlite android-contentprovider

是否可以在使用内容提供程序的Query中使用inner subselect语句? 例如:

SELECT * from foo where timestamp = (select max(timestamp) from foo)

如果是,有人可以告诉我如何将其发送到“selection / selectionArgs”吗?

Thnx提前......

BTW,我不能使用rawquery

1 个答案:

答案 0 :(得分:2)

一种可能的替代方法是将原始查询放入内容提供程序,并由仅执行原始查询的特定CONTENT_URI调用。