Android中的sqlite查询数据时去掉重复值的方法实例
1、方式一:
/** *参数一:是否去重 *参数二:表名 *参数三:columns表示查询的字段,newString[]{MODEL}表示查询该表当中的模式(也表示查询的结果) *参数思:selection表示查询的条件,PHONE_NUMBER+"=?"表示根据手机号去查询模式 *参数五:selectionArgs表示查询条件对应的值,newString[]{phoneNumber}表示查询条件对应的值 *参数六:StringgroupBy分组 *参数七:Stringhaving *参数八:orderBy表示根据什么排序, *参数九:limit限制查询返回的行数,NULL表示无限制子句 **/ Cursorcursor=readableDatabase.query(true,TABLE_NAME,newString[]{DESCRIPTION,ID,IMAGE_URL,LATITUDE,LONGITUDE,NAME,NEED_AUDIO,SPOT_TYPE,TGROUP,AUDIO_NAME,AREA_NAME},AREA_NAME+"=?",newString[]{areaName},null,null,null,null);
全部查询代码如下:
/** *根据景区名称查询景点数据 *@paramareaName *@return0:未查询到拦截模式(也就是该手机号没有设置拦截模式)1:拦截短信2:拦截电话3:拦截所有 **/ publicListgetScenicAreas(StringareaName){ ArrayList scenicSpotList=newArrayList<>(); Stringmodel="0"; SQLiteDatabasereadableDatabase=mSmartTourSQLiteOpenHelper.getReadableDatabase(); /** *参数一:是否去重 *参数二:表名 *参数三:columns表示查询的字段,newString[]{MODEL}表示查询该表当中的模式(也表示查询的结果) *参数思:selection表示查询的条件,PHONE_NUMBER+"=?"表示根据手机号去查询模式 *参数五:selectionArgs表示查询条件对应的值,newString[]{phoneNumber}表示查询条件对应的值 *参数六:StringgroupBy分组 *参数七:Stringhaving *参数八:orderBy表示根据什么排序, *参数九:limit限制查询返回的行数,NULL表示无限制子句 **/ Cursorcursor=readableDatabase.query(true,TABLE_NAME,newString[]{DESCRIPTION,ID,IMAGE_URL,LATITUDE,LONGITUDE,NAME,NEED_AUDIO,SPOT_TYPE,TGROUP,AUDIO_NAME,AREA_NAME},AREA_NAME+"=?",newString[]{areaName},null,null,null,null); while(cursor.moveToNext()){ ScenicSpotscenicSpot=newScenicSpot(); Stringdescription=cursor.getString(cursor.getColumnIndex(DESCRIPTION)); Stringid=cursor.getString(cursor.getColumnIndex(ID)); Stringimage_url=cursor.getString(cursor.getColumnIndex(IMAGE_URL)); Stringlatitude=cursor.getString(cursor.getColumnIndex(LATITUDE)); Stringlongitude=cursor.getString(cursor.getColumnIndex(LONGITUDE)); Stringname=cursor.getString(cursor.getColumnIndex(NAME)); Stringneed_audio=cursor.getString(cursor.getColumnIndex(NEED_AUDIO)); Stringspot_type=cursor.getString(cursor.getColumnIndex(SPOT_TYPE)); Stringtgroup=cursor.getString(cursor.getColumnIndex(TGROUP)); Stringaudio_name=cursor.getString(cursor.getColumnIndex(AUDIO_NAME)); Stringarea_name=cursor.getString(cursor.getColumnIndex(AREA_NAME)); scenicSpot.setDescription(description); scenicSpot.setId(id); scenicSpot.setImageurl(image_url); scenicSpot.setLatitude(latitude); scenicSpot.setLongitude(longitude); scenicSpot.setName(name); scenicSpot.setNeedAudio(need_audio); scenicSpot.setSpotType(spot_type); scenicSpot.setTgroup(tgroup); scenicSpot.setAudioname(audio_name); scenicSpot.setAreaName(area_name); scenicSpotList.add(scenicSpot); } cursor.close(); readableDatabase.close(); returnscenicSpotList; }
方式二:
Stringsql="selectdistinct" +TYPENAME +"from" +TABLE_NAME +"ORDERBY"+TYPE+"ASC"; Cursorc=db.rawQuery(sql,null);
完整代码:
/** *@return所有组织结构名称 **/ publicstaticListqueryTypeNames(){ synchronized(DatabaseHelper.lock){ List types=null; SQLiteDatabasedb=DatabaseHelper.getInstance().getReadableDatabase(); try{ Stringsql="selectdistinct" +TYPENAME +"from" +TABLE_NAME +"ORDERBY"+TYPE+"ASC"; Cursorc=db.rawQuery(sql,null); while(c.moveToNext()){ Stringtype=c.getString(c.getColumnIndex(TYPENAME)); if(types==null){ types=newArrayList (); } if(type!=null&&type.length()>1){ types.add(type); } } db.close(); returntypes; }catch(Exceptione){ db.close(); } returntypes; } }
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对毛票票的支持。如果你想了解更多相关内容请查看下面相关链接