我有一个包含这些值的数据库表
UpVotes | DownVotes | PercentVotes
8 | 2 | 80
10 | 0 | 100
5 | 5 | 50
560 | 34 | 94
是否可以让 mysql 数据库像这样工作:
UpVotes | DownVotes | PercentVotes
8 | 2 | (UpVotes/(UpVotes + DownVotes)) x 100 = 80
10 | 0 | (UpVotes/(UpVotes + DownVotes)) x 100 = 100
5 | 5 | (UpVotes/(UpVotes + DownVotes)) x 100 = 50
560 | 34 | (UpVotes/(UpVotes + DownVotes)) x 100 = 94
无需通过任何脚本自动更新?就像在 excel 中一样,您可以更改 UpVotes 值或 DownVotes 值,并且 PercentVotes 值会根据总票数自动成为新的正确百分比。
对不起我的英语不好,但我希望你明白我的意思。:)