1樓:匿名使用者
1. 表結構完全bai
一樣du
insert into 表1
select * from 表2
2. 表結構不一樣zhi(這種情況
下得指dao定列專
名)屬insert into 表1 (列名1,列名2,列名3)select 列1,列2,列3 from 表2
2樓:匿名使用者
insert into table_a(需要的欄位)
select 需要的欄位 from table_b
sql語句 怎麼把一個表的資料複製到另外一個表裡面
3樓:神祕原**
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 …)"
4樓:匿名使用者
不同的資料庫語法不同(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 原表;
5樓:匿名使用者
怎麼把一個表的資料複製到另外一個表裡面,是因為這個表的資料快沒用了所以複製
複製到另一個表裡面了。
6樓:深圳市勵拓軟體****
如何把一個表中的資料複製到另一個表中,小剛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資料庫也是類似的。
7樓:玉麒麟大魔王
語言怎麼把一個表的資料複製到另一個表裡面呢?複製貼上。
8樓:匿名使用者
如果sql中已經有一張存在的資料表,想複製一張屬於自己的資料表。可以:
create table 新表 as select * from 舊錶;
舉例子:
已經有的**:select * from
student;
(學生表)
複製一張學生表:
create table
student_one as select * from
student;
9樓:匿名使用者
inset into 表 (欄位1,欄位2) select 欄位1,欄位2 from 表2
10樓:匿名使用者
說清楚一點,是將一張表的內容更新為另一張還是插入到另一張,如果是更新到則用update..set
插入的話用insert ..into
11樓:匿名使用者
insert into tablename1 values(select * from tablename2)
sql語句 怎麼把從一個表中查出來資料插入到另一個表中
12樓:明月照溝渠
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'
13樓:鬱筱羽
標準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
14樓:sql的藝術
insert into table2 (col1,col2,col3)
select col1,col2,col3 from table1
記得插入表的列數要與查詢結果列數一致,並且資料格式也需一致
15樓:day忘不掉的痛
方法如下:
insert into 表2(欄位名1,欄位名2,.....)select 欄位1,欄位2,...
from 表1
where ...
其中欄位型別必須完全符合。
16樓:育知同創教育
使用insert into 目標表(欄位列表) select 欄位列表 from 原始表
即可實現你所說的功能。
17樓:匿名使用者
你要查什麼資料據?算了,我這是巢狀語句,你看著往裡面換欄位就可以了
insert into 表(select 條件 from 表)
18樓:
很簡單 就是一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中
19樓:尹巧駿
(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。
20樓:匿名使用者
insert into table_dest(column1, column2...)select column1, column2...
from table_source
where ....
21樓:匿名使用者
insert into t1 value (select * from t2);
22樓:楊春三月
insert into users1(id,name,age) select users.user_id,users.user_name,users.
user_age from users ;
親測試可用!
內!容!
mysql 查詢語言 一張表的資料插入另一張表的sql語句
23樓:非常可愛
示例:insertintotpersonnelchange(
userid,
depid,
subdepid,
postiontype,
authorityid,
changedates,
insertdate,
updatedate,
sakuseisyaid
)select
userid,
depid,
subdepid,
postiontype,
authorityid,
date_format(employdate,'%y%m%d'),
now(),
now(),
1from
tusermstwhere
`status`=0
andquit***=0
anduserid>2
擴充套件資料
insertintotable1(table1_field1,table1_field2,...)selecttable2_filed1,table2_field2,...fromtable2wherecondition1andcondition2...
;//一張表符合條件的資料插入另一張表對應欄位中
insertintoshelve_goods_info(product_id,`name`,image,original_amount,amount,spec_id,spec_str,sync_time,last_updtime)selectdistinctproduct_id,`name`,image,original_amount,amount,spec_id,spec_str,sync_time,now()fromjingguo_order_goodsgroupbyproduct_idorderbysync_timedesc;
//根據一張表的資料修改另一張表的資料
updateshelve_goods_infoass,ttastsets.print_title=t.newname,s.
price=t.newprice,original_price=ceil(t.newprice*10/8)wheres.
name=t.orname;
求一條sql語句
求score總和 select sum score from tablename求最大userid select max userid from tablename 你的意思沒說明白,是要求最大userid對應的score總和。select userid,sum score from tablena...
求一條sql語句
能夠實現,先查詢出兩條置頂的 然後再根據結果查普通的,declare fastness intset fastness 2 這裡是你的固定新聞數量。declare sql varchar 1000 set sql select top fastness from table union all se...
mysql如何只更新查詢到的第一條資料
update set name where title limit 1 limit 1就是隻更新第 一條,跟select limit一個意思。如果title欄位為unique,當查詢到第一條資料,就會直接退出查詢嗎?都唯一了當然只能查到一條資料,查到就結束啦 mysql中查訊咋查第一條記錄 檢視第一...