How do I select rows from table?
问题 I'm making an app where MainActivity has a RecyclerView that contains the user's lists e.g. grocery list, weekly list, etc. When the user clicks on an item, it'll navigate to products activity also has a RecyclerView. I have 2 different SQLite databases 1:lists 2:products. The logic I used is when a user adds a list, the lists database will record list name and id, also adds list name in products database, and when user add product, I used update() instead of insert() in SQLite because the