I have a question about MySQL efficiency.
If I had 2 very large tables of data, which are similar in columns. And I need to display the data together, would it be better to combine the tables into 1 or use a join?
Bear in mind over time there could be millions of rows in each table, so combining would double the table size.
What is the best way to do this efficiency wise?
Is it worth separating the data?