I get a player's rating from the database by the following query, where S is murder, D is death
SELECT 'player_name', IF(D = 0, S, (S / D)) AS 'rating' FROM accounts ORDER BY IF(D = 0, S, (S / D)) DESC LIMIT 5 How to round down? For example, S = 23, D = 4. Partial = 5.75. Need to withdraw 5.7