Some unchecked rounding errors have crept into my system which results in some items with very large number of decimal places - something like 5.0000000000006475. The problem is Excel won't deal with such big numbers, it converts them to text by placing an apostrophe in front to the number (and also changes some to an "E" notation.
So I have two questions,
1) to avoid interrogating 10's of 0000' of transactions one by one is there a FIND statement that I can construct to find the ones I need to fix.
2) Will this statement work once I've found them BO.number_attribute=ROUND (BO.number_attribute,2)
Alternatively - might there be a way in MySQL to fix this - something like a TRIM function