Viewing 2 posts - 1 through 2 (of 2 total)
Money type converts as desired/expected.
DECLARE @tmp1 money = 0.289;
SELECT
CONVERT(INT,
(ROUND(@tmp1, 2) * 100.0)
)
January 16, 2020 at 2:59 pm
#3715997
What really helped me from the article was the info about hash joins vs nested loop joins. I wound up doing some more research and I was able to put...
May 7, 2007 at 12:06 pm
#704739