php實現mysql資料庫隨機重排例子

997948599發表於2014-11-14
程式程式碼




 程式碼如下 複製程式碼 

//資料庫連線就不寫在這裡面了
$s = isset( $_GET['s'] )?$_GET['s']:0;
$e = isset( $_GET['e'])?$_GET['e']:50;
$count =85000;




if( $s < $count )
{
 $sql = "select * from 表字首_info where isget =0 order by id desc limit $s,$e ";
 $query = mysql_query( $sql );
 while( $rs = mysql_fetch_array( $query ) )
 {
  $id = $rs['id'];
  $sss = $rs['sss'];
  $typeid = $rs['typeid'];
  $isget = $rs['isget'];
()
  $sql = "insert into 表字首_info_bak (id,表字首,typeid,isget) values('$id','$sss','$typeid','$isget')";
  mysql_query( $sql ) ;
  echo $sql;
  //exit;
  $sqlu = "update 表字首_info set isget=1 where id =".$rs['id'];
  mysql_query( $sqlu );
 }
 echo '正在處理資料,當前為'.$s.'條......';
}
else
{
 echo '完成所有資料處理 再隨機排序一次';
}
?>

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29874640/viewspace-1332552/,如需轉載,請註明出處,否則將追究法律責任。

相關文章