I'm currently ORDERing my data by total (the column is datatype DECIMAL 10,2) which is fine, however if the total is the same then it needs to be ORDERED by epoch ASC so oldest dated totals (with my epoch timestamp) are displayed first if they're the same amount. Current mysql query:
SELECT email, total, epoch FROM data ORDER BY total DESC LIMIT 5