I have this table in my SQL Server database
The type of Gisx
and Gisy
columns is FLOAT
.
When I want to select from this table like this :
SELECT *
FROM TblImage
WHERE GisX = 57.2938107
everything is fine, but when the digits after the point are more than 7 digits, the result of selection is going to be nothing while there is such field in the table:
SELECT *
FROM TblImage
WHERE GisX = 38.0752152407368
I know maybe it is because of the problem in float but is there any way to fix the problem?