Suppose I have two tables with the same column names and the only difference is that one is the continuation of the other, how do I join the two tables (one after the other) to obtain all the data in one? query?
Suppose I have two tables with the same column names and the only difference is that one is the continuation of the other, how do I join the two tables (one after the other) to obtain all the data in one? query?
If your tables have the same fields you can use a
something like that
Here is a link with more information about it.
SQLITE UNION