+----------+-----------------------+
| id | amount |
+----------+-----------------------+
| 1 | 20 |
| 2 | 40 |
| 3 | 60 |
私はphpを使用してすべての金額を組み合わせて120(20 + 40 + 60)になりたい
$query = mysql_query("SELECT * FROM table");
while($row = mysql_fetch_array($query)){
$result = $row + $row; // of course false, just an example
}
どうやってするの ?