Expand Minimize
This topic has not yet been rated - Rate this topic

SQRT (SQL Server Compact Edition)

SQL Server 2005

Returns the square root of the given expression.


SQRT ( float_expression ) 
float_expression

An expression whose type can be implicitly converted to float.

The following example returns the square root of the freight charges from the Orders table.

SELECT Freight, SQRT(Freight) AS "Square root of Freight"
FROM Orders
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.