2010-06-18 67 views

回答

4
Insert Into dbo.MyTable (Col1, Col2,...) 
Select Col1, Col2, ... 
From dbo.MyView 
2
insert into mytable(c1, c2, c3, ...) 
select c1, c2, c3, ... from myview 
4

如果要插入整列,那麼你可以不喜歡

insert into table_name 
    select * from view_name 
+0

做,如果表中有相同的格式視圖 – 2017-03-20 21:08:34