Due to confidentiality, I will not post the table, but will provide as much detail as I can if someone needs more information.
I am doing a "SELECT AVG(result)" from a table and when I use this query on mysql workbench, the result is something like 99.78999999999999. However when I try to use mysql connector in python, as soon as I do a
results = cursor.fetchall()
and I check the results, the value is 99.79. It rounds it by itself and I'm not sure why.
EDIT
99.7, 99.9, 99.8, 99.85, 99.6, 99.85, 99.85, 99.75, 99.8, 99.8 Which averages to 99.78999999999999 in mysql workbench but 99.79 in python mysql-connector