Viewing 4 posts - 1 through 4 (of 4 total)
Fedor 28151 (10/23/2015)
If state of record considered as normal, it should be "0". I use value "1" for special condition.
For example:
Correct:
Default state of...
October 23, 2015 at 4:30 am
#1835110
Good question.
So, what's the correct way to do the conversion?
DECLARE @real REAL= 43.39061;
SELECT @real
SELECT CONVERT(FLOAT, @real)
...
August 12, 2015 at 5:23 am
#1819260
Good explanation, I never had this kind of problem.
July 14, 2015 at 5:34 am
#1812264
#1812263