select * from table limit 10,20;返回20条记录,我现在想返回从第10条开始的后面所有记录。
不要用select * from table where ** in (select ** from table limit 10) 这种方法,
我在网上找到篇文章说:select ** from table limit 10,-1就可以,可是报错,不知道是不是版本问题。

解决方案 »

  1.   

    如果是sql server则用:select * from tb where id not in (select top 10 id from tb order by id)
      

  2.   


    SELECT * FROM table WHERE ID NOT IN
    (SELECT TOP 10 ID FROM Table ORDER BY ID)
      

  3.   

    N-M條記錄
    1.
    select top m * into 临时表(或表变量) from tablename order by columnname -- 将top m笔插入
    set rowcount n
    select * from 表变量 order by columnname desc
    2.
    select top n * from 
    (select top m * from tablename order by columnname) a
    order by columnname desc
    3.
    如果tablename里没有其他identity列,那么:
    select identity(int) id0,* into #temp from tablename取n到m条的语句为:
    select * from #temp where id0 >=n and id0 <= m如果你在执行select identity(int) id0,* into #temp from tablename这条语句的时候报错,那是因为你的DB中间的select into/bulkcopy属性没有打开要先执行:
    exec sp_dboption 你的DB名字,'select into/bulkcopy',true
    4.
    如果表里有identity属性,那么简单:
    select * from tablename where identitycol between n and m
      

  4.   

    SQL SERVER只能这么写,即使你倒无数次也没办法.
      

  5.   

    楼上的让我抄一下:
    N-M條記錄
    1.
    select top m * into 临时表(或表变量) from tablename order by columnname -- 将top m笔插入
    set rowcount n
    select * from 表变量 order by columnname desc
    2.
    select top n * from 
    (select top m * from tablename order by columnname) a
    order by columnname desc
    3.
    如果tablename里没有其他identity列,那么:
    select identity(int) id0,* into #temp from tablename取n到m条的语句为:
    select * from #temp where id0 >=n and id0 <= m如果你在执行select identity(int) id0,* into #temp from tablename这条语句的时候报错,那是因为你的DB中间的select into/bulkcopy属性没有打开要先执行:
    exec sp_dboption 你的DB名字,'select into/bulkcopy',true
    4.
    如果表里有identity属性,那么简单:
    select * from tablename where identitycol between n and m
      

  6.   

    本帖最后由 yueliangdao0608 于 2008-10-31 07:43:44 编辑
      

  7.   

    select top m * from tablename where id not in (select top n id from tablename)