如何在没有_id基本列的情况下在sqlite和游标中使用distinct?

时间:2015-09-20 05:37:43

标签: android sqlite distinct

我有一张表,我应该使用此查询来获得正确答案:

select distinct IDPAGE,TIT from contents where NUM=1;

并将此光标发送到cursorAdapter。如您所知,在此游标中应该是_id列。如果没有,应用程序没有启动。但我只想要我的表格而不是_id col。我想要一个像这样的查询:

select rowid _id distinct IDPAGE,TIT from contents where NUM=1;

在sql中,我可以使用DENSE_RANK()但不能在sqlite中使用。请帮帮我......

0 个答案:

没有答案