Get started
Load & manage data
Work with data
Administration
Reference & resources
CLUSTER BY
mask
ROW FILTER
Updated Nov 04, 2024
Send us feedback
csc
Applies to: Databricks SQL Databricks Runtime 10.4 LTS and above
Returns the cosecant of expr.
expr
csc(expr)
expr: An expression that evaluates to a numeric expressing the angle in radians.
A DOUBLE.
csc(expr) is equivalent to 1 / sin(expr)
1 / sin(expr)
> SELECT csc(pi() / 2); 1.0 > SELECT csc(0); Infinity
acos function
cos function
cosh function
csc function
sin function
tan function