Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. DECLARE @sql nvarchar(max)
  2. DECLARE @result float
  3.  
  4. SET @sql = N'set @result = ' + @Word
  5. exec sp_executesql @sql, N'@result float output', @result out
  6. RETURN @result
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement