我有 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 中做到這一點
結果:
範例查詢
雷雷