You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Returns the corresponding angle in degrees for an angle specified in radians.
31
+
This function returns the corresponding angle, in degrees, for an angle specified in radians.
32
32
33
33
[Transact-SQL Syntax Conventions](../../t-sql/language-elements/transact-sql-syntax-conventions-transact-sql.md)
Is an[expression](../../t-sql/language-elements/expressions-transact-sql.md) of the exact numeric or approximate numeric data type category, except for the **bit** data type.
43
+
An[expression](../../t-sql/language-elements/expressions-transact-sql.md) of the exact numeric or approximate numeric data type category, except for the **bit** data type.
44
44
45
45
## Return Code Values
46
-
Returns the same type as*numeric_expression*.
46
+
Returns a value whose data type matches the data type of*numeric_expression*.
47
47
48
48
## Examples
49
-
The following example returns the number of degrees in an angle of PI/2 radians.
49
+
This example returns the number of degrees in an angle of PI/2 radians.
50
50
51
51
```
52
52
SELECT 'The number of degrees in PI/2 radians is: ' +
@@ -65,5 +65,3 @@ The number of degrees in PI/2 radians is 90
0 commit comments