SQLite
 sql >> Database >  >> RDS >> SQLite

Interroga solo i primi dati da una tabella

limit 1

Dalla documentazione:

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

quindi, metti il ​​tuo ultimo argomento come "limite 1".

Cursor img_cursor = db.query(
                IMAGE_URL_TABLE_NAME,
                new String[]{"small_img_url" , "large_img_url"},
                null,
                null, null, null, "limit 1");