Last updated 3 months ago
SQL Server
Azure Synapse Analytics
Static function that returns the cosine of an angle in radians ().
Math.cos( expression )
expression: Numeric expressions.
expression:
Same data type sent through parameter as a numeric expression.
CREATE OR REPLACE FUNCTION compute_cos(angle float) RETURNS float LANGUAGE JAVASCRIPT AS $$ return Math.cos(ANGLE); $$ ; SELECT COMPUTE_COS(PI());
COMPUTE_COS(PI())| -----------------+ -1|
No issues were found.
No related EWIs.