MySQL COT() Function
THE WORLD'S LARGEST WEB DEVELOPER SITE

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

Note: The COT() function will return NULL or an error, if number is 0.

Technical Details

Works in: MySQL 5.7, MySQL 5.6, MySQL 5.5, MySQL 5.1, MySQL 5.0, MySQL 4.1, MySQL 4.0, MySQL 3.23

More Examples

Example

Return the cotangent of a number:

SELECT COT(-2);
Try it Yourself »

❮ MySQL Functions