sql server ce - how to combine 2 tables to 1 table in sqlCE? -
I have two tables that have the same field
Adding 2 tables to 1 table
How to do it in SQLite?
Thanks in advance
a INSERT ... (SELECT ...) Enter all the data from the first by using the query
Finally, if necessary, you can add a column to flag the original table that is of the data. Afterwards, remove the second table.
Comments
Post a Comment