MySQL COS() Function

Example

Return the cosine of a number:

SELECT COS(2);
Try it Yourself »

Definition and Usage

The COS() function returns the cosine of a number.

Syntax

COS(number)

Parameter Values

Parameter Description
number Required. A numeric value

Technical Details

Works in: From MySQL 4.0

More Examples

Example

Return the cosine of a number:

SELECT COS(PI());
Try it Yourself »

Copyright 1999-2023 by Refsnes Data. All Rights Reserved.