這是一篇使用sql語句將一個表中的數據拷貝到另一個表中簡單文章,有需要的朋友可以參考一下。
聲名:a,b ,都是表--b表存在(兩表結構一樣)
insert into b select * from a若兩表只是有部分(字段)相同,則insert into b(col1,col2,col3,col4,...) select col1,col2,col3,col4,... from a where...把表a插入到表b中去。
--b表不存在
select * into b from a
//select (字段1,字段2,...) into b from a