I find it difficult to find a way to write a query that returns all non-integer numbers in the float column in SQL Server 2005/8.
I have a floating point field where most of the data in it is integers, but I would like to look at strings where the values actually contain a decimal value. The first thing I tried was module 1, but the% operator does not work with float values.
Thank you for your help!
source
share