Changes between Version 77 and Version 78 of DatabaseBasedAnalysis
- Timestamp:
- 08/06/18 16:52:01 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DatabaseBasedAnalysis
v77 v78 774 774 == Optimization and precision maths == 775 775 776 A very interesting read is https://dev.mysql.com/doc/refman/5.7/en/precision-math.html (and its sub-sections : Click on ''Next'').776 A very interesting read is https://dev.mysql.com/doc/refman/5.7/en/precision-math.html (and its sub-sections! Click on ''NEXT''). 777 777 778 778 In short: A value like 1.234 is an ''exact'' value and exact math calculation are performed. If a value is given as an approximate ''floating-point'' value (which all '''DOUBLE''' columns are), for example 1.234e0, the calculation is ''not exact''. ''Not exact'' means that it using (faster) ''floating-point'' arithmetic rather than (slower) ''exact'' arithmetic.