Home  >  Article  >  Backend Development  >  php mysql数据库找到最近相同内容的字段,用它们的id相减输出差

php mysql数据库找到最近相同内容的字段,用它们的id相减输出差

WBOY
WBOYOriginal
2016-06-13 12:45:49827browse

php mysql数据库找出最近相同内容的字段,用它们的id相减输出差
表mydb1、字段:(id、期数、号码1、号码2、号码3),每期开奖号有三个数字(如356)。其中的3是(号码1字段)、5是(号码2字段)、6是(号码3字段)。等到n期后开奖号又出现356时就用这次356的id减去前一次356的id输出差。

$array = array();
while($row = mysql_fetch_assoc($result)){    
if(in_array($row['content'],$array)){        
$a = $row['id'];        
foreach($array as $key =>$content){            
if($row['content']==$content){                
$b = $key;}}}else{        
$array[$row['id']] = $row['content'];}}

求各位高手详细写一写, 谢谢

PHP MySQL
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn