搜尋此網誌

2012年5月21日 星期一

insert into select 及 select into 用法差異

如果今天要寫的目的資料表不存在,可以直接使用 select into 完成,例如
Select Column1, null, 'A', @parameter1, Column2, Column3 Into Table1 From Table2 Where Column1 = 'A' and Column1 = 'B'
如果今天要寫的目的資料表已存在,請使用 insert into select 完成,例如
insert into Table1 Select  Column1, null, 'A', @parameter1, Column2, Column3 From Table2 Where Column1 = 'A' and Column1 = 'B'

沒有留言:

張貼留言