I designed an sqlite database with 2 tables. I did this because i tought that it's not recommanded to insert many columns in a single table. in table 1 I have more than 40 columns, and in table 2 +10 columns Now, when i use the database, i have to do an INNER JOIN to find all fields from the 2 tables.
My question is : Is it better to perform a join between the 2 tables, or create only one table with all the fields (at the end, more than 60) ?
This second option will save an INNER JOIN, so i guess this will speed up the query