Reputation: 31
I would like to do something similar to following:
Cursor mCursor = db.rawQuery("SELECT * FROM Table1, Table2 " +
"WHERE Table1.id = Table2.id_table1 " +
"GROUP BY Table1.data1", null);
Is it possible to do the same using tables present over two different databases?
Upvotes: 3
Views: 221