私はこのクエリを持っています:
$result2 = mysql_query("SET @total=0;
SELECT *,
@total:= @total+ `companyearned` AS `total`
FROM `recordedhours` WHERE `group` = '$uid'
ORDER BY `unixdate` DESC, `idnum` DESC
LIMIT $from, $max_results");
while ($rowb = mysql_fetch_array($result2)) {
//DO STUFF
}
しかし、SET @total=0; while 行でエラーが発生します: 警告: mysql_fetch_array(): 提供された引数は有効な MySQL 結果リソースではありません。