Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • Reply To: Float Issues

    Money type converts as desired/expected.

    DECLARE @tmp1 money = 0.289;

    SELECT

    CONVERT(INT,

    (ROUND(@tmp1, 2) * 100.0)

    )

     

  • RE: How SQL Server Chooses the Type of Join

    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...

Viewing 2 posts - 1 through 2 (of 2 total)