1樓:day忘不掉的痛
方法如下:
insert into 表2(欄位名1,欄位名2,.....)select 欄位1,欄位2,...
from 表1
where ...
其中欄位型別必須完全符合。
2樓:豐運盛
insert into 工資表 values(編號,姓名,小時工資) select 編號,姓名,小時工資 from 員工表 where 編號=『輸入的編號』)
或者insert into 工資表 select 編號,姓名,null,null,null,小時工資 from 員工表 where 編號=『輸入的編號』
你試試,我不確定
3樓:
id 為你textbox中的輸入的編號
insert into 工資表(編號,姓名,小時工資) select 編號,姓名,小時工資 from 員工表 where 編號 = id
注意,2個表的編號,姓名,小時工資欄位型別必須一致
4樓:談玲玲
右鍵 倒入 可以作到
sql語句 怎麼把從一個表中查出來資料插入到另一個表中
5樓:明月照溝渠
1、假如
則 insert into a(a,b,c) (select a,b,c from b)
2、假如a表不存在
select a,b,c into a from b
3、假如需要跨資料庫
insert into adb.[dbo].a(a,b,c) (select a,b,c from bdb.[dbo].b)
擴充套件資料:
sql匯入語句
1、如果要匯出資料到已經生成結構(即現存的)foxpro表中,可以直接用下面的sql語句
insert into openrowset('msdasql',
'driver=microsoft visual foxpro driver;sourcetype=dbf;sourcedb=c:\',
'select * from [aa.dbf]')
select * from 表
說明:sourcedb=c:\ 指定foxpro表所在的資料夾
aa.dbf 指定foxpro表的檔名.
2、匯出到excel
exec master..xp_cmdshell 'bcp settledb.dbo.
shanghu out c:\temp1.xls -c -q -s"gnetdata/gnetdata" -u"sa" -p""'
3、/** 匯入文字檔案
exec master..xp_cmdshell 'bcp dbname..tablename in c:
\dt.txt -c -sservername -usa -ppassword'
6樓:鬱筱羽
標準sql語句
bai格式:
insert
into 表名(
du欄位zhi
名)select 欄位名
from 表面
例子:dao將內查詢出的s表中容sno,j表中jno,p表中pno插入spj表中
insert
into spj(sno,jno,pno)select sno,jno,pno
from s,j,p
7樓:sql的藝術
insert into table2 (col1,col2,col3)
select col1,col2,col3 from table1
記得插入表的列數要與查詢結果列數一致,並且資料格式也需一致
8樓:day忘不掉的痛
方法如下:
insert into 表2(欄位名1,欄位名2,.....)select 欄位1,欄位2,...
from 表1
where ...
其中欄位型別必須完全符合。
9樓:育知同創教育
使用insert into 目標表(欄位列表) select 欄位列表 from 原始表
即可實現你所說的功能。
10樓:匿名使用者
你要查什麼資料據?算了,我這是巢狀語句,你看著往裡面換欄位就可以了
insert into 表(select 條件 from 表)
11樓:
很簡單 就是一bai個du
inert into table(col1,col2,…)select col1,col2,… 語句例如:insert into a(id,name) select id,name from emp;
表示zhi從emp表中查dao
詢出來的
id,name值專 插入到屬a表的id,name中
12樓:尹巧駿
(1).select * into desttbl from srctbl
(2).insert into desttbl(fld1, fld2) select fld1, 5 from srctbl
以上兩句都是將 srctbl 的資料插入到 desttbl,但兩句又有區別的:
第一句(select into from)要求目內標表(desttbl)不存在,因容為在插入時會自動建立。
第二句(insert into select from)要求目標表(desttbl)存在,由於目標表已經存在,所以我們除了插入源表(srctbl)的欄位外,還可以插入常量,如例中的:5。
13樓:匿名使用者
insert into table_dest(column1, column2...)select column1, column2...
from table_source
where ....
14樓:匿名使用者
insert into t1 value (select * from t2);
15樓:楊春三月
insert into users1(id,name,age) select users.user_id,users.user_name,users.
user_age from users ;
親測試可用!
內!容!
如何把多張EXCEL表中同類資料合併
如果報 式相同,1 新建一張表,格式與擬合併表相同。2 選新表左上角第一個存放資料的單元格。3 點 資料 合併計算 在對話方塊的函式欄選 求和 點引用位置欄右邊箭頭,如果被選表不在同工作簿,可通過 瀏覽 按鈕 將第一表全部資料單元格選中,點 新增 將所選內容列在所有引用位置欄中 同樣,將第二表全部資...
ecel中如何在工作表中順序引用另工作表
表一的名稱預設的sheet1 在表2裡輸入如下公式 下拉 感覺你說的是資料有效性吧 方法 a2設定有效性的方法 其他單元格複製 a2 資料有效性 目錄 公式為 offset sheet2 b1,counta sheet2 b b 設定完成之後,你就可以在下拉選單裡找你需要的sheet2裡b列的內容,...
如何在中插入excel表並進行編輯
方法 步驟 word中插入excel表 1.在word文件中,單擊插入 excel工作表,確定。這樣就在word裡插入了一個excel工作表。輸入資料並居中對齊 在excel 裡,輸入下列資料後。選中資料區域,單擊 居中 按鈕,可居中對齊。加上田字格 數字排序等 1.單擊新增表框工具可加上田字格。2...