SELECT * FROM `表名` LIMIT 51, 50  

解决方案 »

  1.   

    $query = "select * from table";
    $result = mysql_query($query) or die("Query failed");
    mysql_data_seek($result,50);
    while($row=mysql_fetch_array($result))或者
    $query="select * from table limit 50,20"  //从第50条记录开始取20条
      

  2.   

    oracle中:
    select * from tablename where conditions and rownum < $count
    minus
    select * from tablename where conditions and rownum < 50
    $count为数据库中总的数据条数
      

  3.   

    我是这的用的$nquery="select * from pnews where nflag='2' and nbid='$bid' order by nid desc limit 50,900000000";
      

  4.   

    先取出来一大部分,用php来区分不久号了
      

  5.   

    oracle:
    select * from (select rownum id,table.* from table) where id>=50