gpt4 book ai didi

Android:执行INNER JOIN时如何从Cursor访问结果?

转载 作者:IT王子 更新时间:2023-10-29 06:25:16 25 4
gpt4 key购买 nike

我在我的 SQLite 数据库中的两个表 table1 和 table2 上使用 INNER JOIN。如何从游标访问结果(两个表的列)?这两个表有 2 个同名的列。

        String query = SELECT * FROM table1 INNER JOIN table2 ON table1.id=table2.id WHERE name like '%c%';
Cursor c = newDB.rawQuery(query, null);

最佳答案

您可以指定列名而不是使用“*”。

String query = SELECT table1.id AS ID,table2.column2 AS c2,...... FROM table1 INNER JOIN table2 ON table1.id=table2.id WHERE name like '%c%';

然后使用列名ID、c2等访问。

while (cursor.moveToNext()) {
String c2 = cursor.getString(cursor.getColumnIndex("c2"));
int id = cursor.getInt(cursor.getColumnIndex("ID"));
..............
.............
}

编辑损坏的链接:在此处检查 rawQuery 方法 http://www.vogella.com/tutorials/AndroidSQLite/article.html在这里 http://www.codota.com/android/methods/android.database.sqlite.SQLiteDatabase/rawQuery对于不同的例子

关于Android:执行INNER JOIN时如何从Cursor访问结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14576100/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com