简单算法

WBOY
Release: 2016-06-13 13:48:53
Original
972 people have browsed it

求一个简单算法
获取数表中每个字段的最后一个值减去第一个值,不要告诉我一个一个查询,我的意思是直接把所有的记录集查询出来,然后定位到每个字段,通过移动指针找到每个字段的第一个值和最后一个值,然后用最后一个值减第一个值,谢谢大家。我不太会移动指针,纠结了好长时间了.


while($row=msssql_fetch_array($result))
{
$row[0]
…………
}
这样循环下去指针就回不来了

------解决方案--------------------
mysql_data_seek -- 移动内部结果的指针

------解决方案--------------------
考虑可以使用数组的reset、next 、end等函数
------解决方案--------------------
$a = null;
while($row=msssql_fetch_array($result))
{
$a = $row[count($row)-1] - $row[0];
return $a;
}

这样子,在给$a赋值的时候,指针动不动呢?对于指针一直不理解。

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template