怎樣把資料庫表資訊複製到另電腦上

時間 2021-06-28 10:11:56

1樓:石紅英

先將你的資料庫分離,再把資料庫複製到你想執行的電腦上,之後將資料庫附加到那臺電腦上的伺服器下。

2樓:匿名使用者

自認為不是高手

use master

gocreate table student(id int identity (1,1),name varchar(20),

age int

) --插入2條測試資料

insert into student

select '周杰倫','100'

union

select '蔡依林','1000'

--查詢資料

select * from student--建立測試資料庫

create database test

--複製插入到新的資料庫test

--語句原型 select * into 資料庫.dbo.新表名 from 要複製的表

--copyfromstudent這個表不需要建立由into自動建立select * into test.dbo.copyfromstudent from master.

dbo.student

--查詢新表的資料

select * from test.dbo.copyfromstudent

--copyfromstudent和student的表結構資料都一樣

sql2019中如何將資料庫中的表複製到另數

傳說中的鷹王 樓主屬豬的,大家給你介紹了那麼多好的方法不用,非要用那麼笨的辦法。要複製的話 開啟企業管理器,開啟表a ctrl c 開啟表b,選中在最後一行 ctrl v 將表 tmp 從資料庫a 複製到資料庫b 伺服器是server 以下語句在資料庫a中執行 insert into server....

oracle中如何將資料從表複製到另表(僅複製其中某

insert into 新表 as select 欄位 from 舊錶。 聖彼得大帝 create table2 as select 列1,列2 from table1 瞭解了?sql語句 怎麼把一個表的資料複製到另外一個表裡面 神祕原 1 複製舊錶的資料到新表 假設兩個表結構一樣 insert i...

SQL資料庫,如何把一張表從資料庫中插入到另外資料庫?如何寫語句

如果兩個表結構完全一樣的,用insert into data2.table2 select from data1.table1 如果結構不一樣或者你要指定欄位,用insert into data2.table2 欄位1,欄位2,欄位 select 欄位j,欄位k,欄位m from data1.tab...