A表資料複製到B表

將dataA資料複製到data0

資料庫中沒有data0這張資料表
select * into data0 from dataA


資料庫中已存在data0資料表
 INSERT INTO data0   select * from dataA

留言