Forum Replies Created

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

  • RE: Copying an SP in code

    Very good!! I hadn't seen this before. Thank you! The following code is an abstraction of basically what I'll end up doing to accomplish this goal.

    DECLARE @tbl...

  • RE: Round a price

    Have you tried casting as decimal?

    DECLARE @p float

    SET @p = '15.4'

    SELECT CAST(@p as decimal (8,2))

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