Viewing 4 posts - 1 through 5 (of 5 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)
SELECT CAST(@REAL AS FLOAT)
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