I am working with SQL Server 2005 stored procedures.
How do I do this:
SET @.MyAnswer = 3^1.2
--i.e. 3 to the 1.2 power
Currently it will not allow it because"The data types int and numeric are incompatible in the boolean XOR operator."
~Le
I think you must use FLOAT to use all or most of the mathematical functions and cast the result to Numeric. Hope this helps.
http://msdn2.microsoft.com/en-US/library/ms177516.aspx
|||Caddre:
I think you must use FLOAT to use all or most of the mathematical function and cast the result to Numeric. Hope this helps.
http://msdn2.microsoft.com/en-US/library/ms177516.aspx
Excellent! That put me on the right path.
The correct function is:POWER(x,y)
and the key wasx.
Power (1.0000, 1) will return 1.0000
Power (1.00, 1) will return 1.00
Thanks!
`Le
No comments:
Post a Comment