Is there a way through an SQL query or similar to find values that exceed 2 decimal points? Something like
SELECT * FROM TableName WHERE the decimels > 2
Example image below highlights 2 values are need to be fixed, but im not sure how to select these values only.
We only display 2 decimals on screens so anything over that is not rounded. We do fix them up as we see them but there are thousands of values in the Database. Being able to easily identify them would really help.
Thanks