开发者

how to combine 2 tables to 1 table in sqlCE?

开发者 https://www.devze.com 2023-01-10 02:57 出处:网络
i have 2 tables that has the same fields i need to开发者_运维问答 combine 2 tables to 1 table how to do it in sqlCE ?

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


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消