1
Good morning guys, could you ask me a question ? How should I make one Inner Join
in the SQLite
using the Cursor
? Below is my code, but I do not know how to fit it in the line.
final SQLiteDatabase d5 = dadosOpenHelper.getReadableDatabase();
final Cursor cursor5 = d5.query("produto" , new String[]{"produto.descricao", "produto.ean", "produto.status", "produto.precoprod", "categoria.descricao", "produto.cod"}, null, null, null ,null,null,null);
Thanks, I read the documentation and managed to do Inner Join, I will post the result.
– Dev