你直接查询三列不就行了?
select id,name,address from table

解决方案 »

  1.   

    select identity(int,1,1),Name,Address from 表名
      

  2.   

    To,Owen1982-20004老大不行啊,
    帮忙解决一下
      

  3.   

    是否应该加上 
    select identity(int,1,1),Name,Address INTO #Temp_Table from 表名
      

  4.   

    select identity(int,1,1) as NO,Name,Address into #Temp_Table  from databsename..tabelname
      

  5.   

    可以修改表的结构:
    alter table table1
    add id int identityselect * from table1