难道只能top 60000,再删了60000,再top60000么?

解决方案 »

  1.   

    能给个具体例子么
    刚学sql,一点头绪都没
      

  2.   

    有沒有字段用來統計的啊。id int identity(1,1)沒用就加一個。
    alter table tablename 
    add id int identity(1,1)
    select top 60000 * into .....
    select * into .... from tablename where id between 60001 and 12000
    select * into .... from tablename where id>12000
      

  3.   

    也可以
    select top 60000 * from tablename where 主鍵 not in (select top 6000 主鍵 from tablename)
      

  4.   

    好像可行。有个字段基本自增量的
    我好像也不要精确的导出60000,这样可以了
    死在top这个牛角尖了。。不好意思