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的表結構資料都一樣
mysql資料庫怎麼複製一張表,SQL資料庫中同一張表內資料怎麼複製?
不用匯出,假如你的表111已存在資料庫中,可以很方便的複製 create table 222 as select from 111 create table 222 as select from 111 這樣是能複製全部資料和結構的,但是沒有索引 create table 222 asselect ...
怎樣匯出資料庫關係圖,怎麼根據資料庫表結構生成關係圖
用workbench匯出mysql資料庫關係圖方法如下 1.開啟mysql workbench,選擇首頁中間 data modeling 下方的第二欄 create eer model from existing database 2.在 stored connection 裡選擇 manage s...
如何將mysql資料庫中的表匯入到另mysql資料庫中
db1為原資料庫,db2為要匯出到的資料庫,fromtable 是要匯出的表名 1.方法一 登入匯出到的資料庫,執行 create table fromtable select from db1.fromtable 2.方法二 在cmd下執行,mysqldump u root p db1 fromt...