1、如果是整個表複製表達如下:
insert
into
table1
select
*from
table2
2、如果是有選擇性的複製資料表達如下:
insert
into table1(column1,column2,column3...)
select
column1,column2,colunm3...
from
table2
3、乙個資料庫中的表中的資料複製到另乙個資料庫中的乙個表,使用方法如下:
insert
into
資料庫a.dbo.table1(col1,col2,col3...)
select
col1,col2,col3...
from
資料庫b.dbo.table2
4、如果需要轉換,使用方法如下:
insert
into table1(column1,column2,column3...)
select
column1,
casec olumn2
when 'a'then 'b'else 'c' end as column2 ,colunm3...
from
table2
SQL資料庫中把乙個表中的資料複製到另乙個表中
1 如果是整個表複製表達如下 insert into table1 select from table2 2 如果是有選擇性的複製資料表達如下 insert into table1 column1,column2,column3.select column1,column2,colunm3.from...
SQL資料庫中把乙個表中的資料複製到另乙個表中
1 如果是整個表複製表達如下 insert into table1 select from table2 2 如果是有選擇性的複製資料表達如下 insert into table1 column1,column2,column3.select column1,column2,colunm3.from...
SQL中複製乙個表到另外乙個資料庫中
有兩個資料庫分別叫dberp和dbtest,dbtest中有個表叫u 物料編碼,現在我想將此表複製到dberp中,即 dberp中也弄個u 物料編碼表。在sql server management studio中,使用 sql server匯入和匯出嚮導 可以很容易地複製表。如果一定要使用語句,假設...