???就是普通的SQL语句啊,有什么不可以的么?

解决方案 »

  1.   

    .
    .
    .
    insert into tablname(
                         字段1,
                         字段2,
                         ...
                         字段n
                         )
                        values
                        (
                         @参数1,
                         @参数2,
                         ...
                         @参数n
                         )
      

  2.   

    不信,你试试看,有INSERT INTO语句的存储过程编译不通过
      

  3.   

    insert 表 (列1,列2,列3) values('a','b','c')
    ??????
      

  4.   

    或:
    insert into 表 .....或:insert 表 (列1,列2,列3) select 列1,列2,列3 from 表2
      

  5.   

    create procedure up_test as
    create table #a (a char(1))
    create table #b (a char(1))
    insert into #a select * from #b
    可以的啊。