As my app grows, certain tables have the potential to get millions of rows. What is the terminology that I need to research to do something where I offload data from one table to another for the sole purpose of preventing the table from getting too large?
Or am I making this too complicated? I have a SQLite table that is going to have millions of rows but they're just basic integers. Is millions of rows OK? I guess querying would get really bad at that point. Ugh. I need a little direction please - thank you! 🙂
I'm keeping track of hundreds of quiz questions and keeping track how many times each user got each question correct. This table is simply relating the user to the question and keeping a count of correct answers.