• Interesting code.

    But can't use just do either of these:

    DECLARE @result TABLE (value decimal(24, 4))

    INSERT INTO @result

    EXEC('SELECT 3.0 / 4 + 3.2')

    SELECT * FROM @result

    Or:

    DECLARE @value decimal(24, 4)

    EXEC sp_executesql N'SELECT @value = 3.0 / 4 + 3.2', N'@value decimal(24, 4) OUTPUT', @value OUTPUT

    PRINT @value

    ?

    SQL DBA,SQL Server MVP(07, 08, 09) "It's a dog-eat-dog world, and I'm wearing Milk-Bone underwear." "Norm", on "Cheers". Also from "Cheers", from "Carla": "You need to know 3 things about Tortelli men: Tortelli men draw women like flies; Tortelli men treat women like flies; Tortelli men's brains are in their flies".