select insert 組合語句 使用SELECT INTO 和 INSERT INTO SELECT 表複製語句了。數據庫
1.INSERT INTO SELECT語句框架
語句形式爲:Insert into Table2(field1,field2,...) select value1,value2,... from Table1 [where column =value][]爲可選內容要求目標表Table2必須在因爲目標表Table2已經存在,因此咱們除了插入源表Table1的字段外,還能夠插入常量。示例以下:code
insert into tjjrmx(yybh,xh,tjxmbh,jg,sfyx,zhxmbh,tjksbh,jcrq,jcys,ts,ckfw,disporder) select '24',xh,tjxmbh,jg,sfyx,zhxmbh,tjksbh,jcrq,jcys,ts,ckfw,disporder from tjjrmx where yybh = 5select
2.SELECT INTO FROM語句數據
語句形式爲:SELECT vale1, value2 into Table2 from Table1 要求目標表Table2不存在,由於在插入時會自動建立表Table2,並將Table1中指定字段數據複製到Table2中。示例以下:
3.從一個數據庫到另外一個數據庫db
語句形式爲:insert into 數據庫名.框架名.表名(列名) select (列名) from 數據庫名.框架名.表名 where 條件 例如:insert into MyEmp.dbo.tjdjb(yybh)
select yybh from MyCmd.dbo.tjdjb where djrq='2009-10-15' and yybh = '11'di