sql資料庫怎麼將A表的資料匯入到B表

2021-09-08 04:25:18 字數 864 閱讀 3909

1樓:糖糖寳寳

首先要保證的是b庫的testtableb1 表結構和a庫的testtablea1 表結構相同.

set identity_insert databaseb.dbo.testtableb1 on --匯入前開啟identity_insert為on

insert databaseb.dbo.testtableb1 --目標資料庫表(需要匯入的庫表)

( testid,

testname

)select

testid,

testname

from databasea.dbo.testtablea1 --源資料庫表(需要匯出的庫表)

set identity_insert databaseb.dbo.testtableb1 off --匯入後關閉identity_insert為off.

2樓:匿名使用者

1、說明:複製表(只複製結構,源表名:a 新表名:b) 法一:select * into b from a where 1<>1(僅用於sqlserver)

法二:select top 0 * into b from a

2、說明:拷貝表(拷貝資料,源表名:a 目標表名:b) insert into b(a, b, c) select d,e,f from b;

3樓:匿名使用者

insert into a(a)select b from b這種情況下要保證insert中每個欄位和select中的每個欄位的資料型別要一致,否則會報錯的

4樓:匿名使用者

insert into b select * from a;

關聯式資料庫sql語言,關聯式資料庫SQL語言?

從關聯式資料庫r中列出屬性a,b,以及c的平均值,其條件是屬性d等於d,並將a,b分組列出,並篩選出c的平均值大於c1.好熟悉啊,不過都還大學老師了 執行的順序是從索引開始的,也就是條件,限制句中開始的,這樣可以減少i o次數 輸入,輸出 它所顯示的結果是這樣的 顯示的有 a列資料,b列資料和c列資...

sql資料庫題求大神幫忙,sql資料庫題求大神幫忙

if object id n member is not null drop table membercreate table member mid char 10 not null primary key,mname char 50 not null goexec sp addextendedpr...

sql資料庫區域網共享,SQL資料庫區域網共享

首先配置你的sqlserver允許遠端訪問,然後修改程式中的資料庫連線字串datasrouce 你電腦的區域網ip,就可以了 把裝了sql的那臺防火牆關掉 在另兩臺電腦用遠端訪問連線 區域網內可通過網路上的芳鄰 訪問資料庫 三臺電腦都加入同一個網,一臺電腦裝上sql2000,將外圍配置設定成可以遠端...