我有 2 张桌子 游戏和交易 我在 Games 表中使用此公式 sum(EntryFee * Rake/(100 Rake)*TotalEntry) 来获取值
我在事务表计数(不同的用户ID)中使用此查询来获取值
现在我想将 [sum(EntryFee * Rake/(100 Rake)*TotalEntry)] 的值除以 [count(distinct UserID)] 的值
例如 sum(EntryFee * Rake/(100 Rake)*TotalEntry) = 90 且 count(distinct UserID) = 3 那么 90/3 =30 我怎样才能在 MYSQL 中做到这一点
结果:
示例查询
雷雷