views:

18

answers:

1

hi

i have 2 tables that has the same fields

i need to combine 2 tables to 1 table

how to do it in sqlCE ?

thank's in advance

A: 

Insert all the data from the second in the first one by using a INSERT ... (SELECT ... ) query. Eventually, if needed, you can add a column to flag the original table the data belongs to. Afterwards, delete the second table.

thelost