How to get a cursor with distinct values only?

前端 未结 4 991
无人及你
无人及你 2020-12-21 04:45

I want to return a cursor only with distinct values of a column. The column \'Groups\' has more items but with only 2 values: 1,2,1,1,1,2,2,2,1

String[] FRO         


        
4条回答
  •  感情败类
    2020-12-21 05:03

    you can use distinct argument while making query like this:

    public Cursor query (boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit)
    

    Follow this doc for more clearity.

提交回复
热议问题