如何將資料庫表中的部分資料轉到另資料庫的表

時間 2021-05-07 19:58:51

1樓:du瓶邪

insert into tableb..bb(b1,b2,b3) select a1,a2,a3 from tablea..aa

insert into 資料庫1.a(id,name...)select id,name...from 資料庫2.b

insert into tableb(b1,b2,b3) select a1,a2,a3 from[wjjj].[dbo].[fbase]

insert into tableb(b1,b2,b3) select a1,a2,a3 from[資料庫2名].[dbo].[表]

例項:create database testa

use testa

create table tablea

(id int primary key identity(1,1) not null,

username varchar(50) not null,

pwd varchar(50) not null,

age int not null

)create database testb

use testb

create table tableb

(id int primary key identity(1,1) not null,

ageb int not null,

pass varchar(50) not null

)insert into tableb(ageb,pass) select age,pwd from testa.dbo.tablea

insert into tablea(age,pwd) select ageb,pass from testb.dbo.tableb

2樓:我愛素手輕揚

如果是access的話.直接開啟資料庫,複製過去.

3樓:己聞楣

update b

set d = a.b

from a a, b b

where b.a = a.a

4樓:

沒看懂,錯誤字太多了。

sql語句 怎麼把一個表的資料複製到另外一個表裡面

5樓:神祕原**

1、複製舊錶的資料到新表(假設兩個表結構一樣)

insert into 新表 select * from 舊錶

2、複製舊錶的資料到新表(假設兩個表結構不一樣)

insert into 新表(欄位1,欄位2,.......) select 欄位1,欄位2,...... from 舊錶

3、複製表結構及資料到新表

select * into 目標表名 from 源表名(要求目標表不存在,因為在插入時會自動建立)

4、只複製表結構到新表

create table 新表 select * from 舊錶 where 1=2 即:讓where條件不成立.

擴充套件資料

基本sql語句

1、資料表的建立

create table 資料表名稱(欄位1 型別1(長度),欄位2 型別2(長度) …… )

2、 資料記錄篩選

sql="select * from 資料表 where欄位名=欄位值 order by欄位名[desc]"

3、更新資料記錄

sql="update 資料表 set欄位名=欄位值 where 條件表示式"

4、刪除資料記錄

sql="delete from 資料表 where 條件表示式"

5、 新增資料記錄

sql="insert into 資料表 (欄位1,欄位2,欄位3 …) values (值1,值2,值3 …)"

6樓:匿名使用者

不同的資料庫語法不同(sql server和oracle為例),且複製包括目標表已存在和目標表不存在的情況,分別回答:

sql server中,如果目標表存在:

insert into 目標表 select * from 原表;

sql server中,,如果目標表不存在:

select * into 目標表 from 原表;

oracle中,如果目標表存在:

insert into 目標表 select * from 原表;

commit;

oracle中,如果目標表不存在:

create table 目標表 as select * from 原表;

7樓:匿名使用者

怎麼把一個表的資料複製到另外一個表裡面,是因為這個表的資料快沒用了所以複製

複製到另一個表裡面了。

8樓:深圳市勵拓軟體****

如何把一個表中的資料複製到另一個表中,小剛seo為你解答

複製表結構及資料到新表 select * into 目標表名 from 源表名(要求目標表不存在,因為在插入時會自動建立)

步驟閱讀.2只複製表結構到新表 create table 新表 select * from 舊錶 where 1=2 即:讓where條件不成立.

步驟閱讀.3複製舊錶的資料到新表(假設兩個表結構一樣) insert into 新表 select * from 舊錶

步驟閱讀.4複製舊錶的資料到新表(假設兩個表結構不一樣) insert into 新表(欄位1,欄位2,.......) select 欄位1,欄位2,...... from 舊錶

步驟閱讀.5oracle資料庫也是類似的。

9樓:玉麒麟大魔王

語言怎麼把一個表的資料複製到另一個表裡面呢?複製貼上。

10樓:匿名使用者

如果sql中已經有一張存在的資料表,想複製一張屬於自己的資料表。可以:

create table 新表 as select * from 舊錶;

舉例子:

已經有的**:select * from

student;

(學生表)

複製一張學生表:

create table

student_one as select * from

student;

11樓:匿名使用者

inset into 表 (欄位1,欄位2) select 欄位1,欄位2 from 表2

12樓:匿名使用者

說清楚一點,是將一張表的內容更新為另一張還是插入到另一張,如果是更新到則用update..set

插入的話用insert ..into

13樓:匿名使用者

insert into tablename1 values(select * from tablename2)

用servlet如何將資料庫中的資料顯示在jsp頁面上在

你點下網頁的一個請求的過程如下 你點按鈕發起請求 到了後臺servlet servlet收到請求引數,然後給biz biz簡單處理了下之後,需要去資料庫讀取資料,所以它去dao dao取到資料返回給biz biz將資料返回給servlet,servlet將資料存放在request的會話中,這個請求就...

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

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

如何從mysql資料庫中獲取表的表結構

大耳朵狗圖圖 show create table 表名 桂奧雅 列出表 列 結構 mysql describe tablename mysql describe tablename columnname mysql desc tablename mysql show columns from tab...