-1
我有數據庫問題。也就是說,如何檢索查詢以便查詢方法查看多個數組?如何查詢多個表的數據庫?
對於examply,我有一個DATABSE表:人,汽車,招聘,天氣等
SQLiteOpenHelper databaseHelper = new DatabaseHelper(this);
databaseHelper.query("People",
new String[]{"_id", "NAME"},
"FAVORITE = 1",
null, null, null, null, null);
那麼如何把多個表?如何從這些數據中獲得「_id」和「NAME」?
謝謝,我只是想,我需要使用此方法。 – newActivity21