SQL Server查询结果插入表

a) 插入新表

        select *

        into newtable

        from table

 

b) 插入已经存在的表

        insert into table

        select * from table2 where...

posted @ 2016-11-27 18:12  景话宇意  阅读(7428)  评论(0)    收藏  举报