仅查询表中的第一个数据

时间:2010-11-16 03:26:53

标签: android sqlite android-sqlite

我正在尝试仅查询表格中的第一个数据。

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

有人可以告诉我如何实现只从表中检索第一个数据的查询吗?

的解决方案

我想我解决了答案:

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

我先使用limit 1,但应用程序崩溃了。只有当我将数字作为String传递时才会有效。当我们使用limit参数时,查询有8个参数。

1 个答案:

答案 0 :(得分:5)

limit 1

来自文档:

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

所以,把你的最后一个参数设为“限制1”。

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