我目前在mysql中有此表。我想制作一个可以自动更新余额的php脚本,例如一个示例B。
string dt = DateTime.Now.ToString("MM-dd-yyyy");
Console.WriteLine($"current date is {dt}".ToUpperInvariant());
这是我尝试过的:
Example A
----+-------+-------------+---------+
| ID | Debit | Credit |Balance |
+----+-------+------------+---------+
| 1 | | 35 | |
| 2 | 65 | 0 | |
| 3 | 35 | |
| 4 | 65 | 0 | |
| 5 | 65 | 0 | |
| 6 | 65 | 0 | |
-------------------------------------
Example B
----+-------+-------------+---------+
| ID | Debit | Credit |Balance |
+----+-------+------------+---------+
| 1 | | 35 | -35 |
| 2 | 65 | 0 | 30 |
| 3 | 35 | -5 |
| 4 | 65 | 0 | 60 |
| 5 | 65 | 0 | 125 |
| 6 | 65 | 0 | 190 |
-------------------------------------
先谢谢您
答案 0 :(得分:0)
您可以通过初始化变量,然后使用该变量来保持运行总计来实现此目的...
App name │ id │ version │ mode │ pid │ status │ restart │ uptime │ cpu │ mem │ user │ watching │
├─────────────────────────┼────┼─────────┼──────┼─────┼─────────┼─────────┼────────┼─────┼────────┼────────┼──────────┤
│ static-page-server-8080 │ 0 │ 3.3.1 │ fork │ N/A │ errored │ 0 │ 0 │ 0% │ 0 B │ carles │ disabled │
实际上,我的编写方式略有错误,理论上可以导致错误,但是实际上我还没有设法触发所述错误,我发现这种方式更易于阅读。