MySQL COT() Function
Clash Royale CLAN TAG#URR8PPP
<!--
main_leaderboard, all: [728,90][970,90][320,50][468,60]-->
MySQL COT() Function
❮ MySQL Functions
Example
Return the cotangent of a number:
SELECT COT(6);
Try it Yourself »
Definition and Usage
The COT() function returns the cotangent of a number.
Syntax
COT(number)
Parameter Values
Parameter | Description |
---|---|
number | Required. A numeric value. If number is 0, an error or NULL is returned |
Technical Details
Works in: | From MySQL 4.0 |
---|
More Examples
Example
Return the cotangent of a number:
SELECT COT(-2);
Try it Yourself »
❮ MySQL Functions