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

時間 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的表結構資料都一樣

VF資料庫把資料庫中的字段複製到另資料庫中

select byzx.byzxmc from byzx into table zxs.syd vf中怎樣將乙個欄位的內容複製到另一字段中 如果是同一條記錄的乙個字段值複製到另乙個字段值,可用替換命令repl all 欄位1名 with 欄位2名其中欄位1是指接收資料的字段 欄位2是指提供資料的字段...

如何將資料庫中一張表的全部內容複製到資料庫中另一張表中

sql語句 insert into b select from a sql 語句就是對資料庫進行操作的一種語言。結構化查詢語言 structured query language 簡稱sql,結構化查詢語言是一種資料庫查詢和程式語言,用於訪問資料以及查詢 更新和管理關係資料庫系統 babyan澀 分...

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

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