COS (Lakehouse v1)
Returns the cosine of x, where x is given in radians.
Analyze Syntax
Section titled “Analyze Syntax”func.cos( <x> )Analyze Examples
Section titled “Analyze Examples”func.cos(func.pi())
┌─────────────────────┐│ func.cos(func.pi()) │├─────────────────────┤│ -1 │└─────────────────────┘SQL Syntax
Section titled “SQL Syntax”COS( <x> )SQL Examples
Section titled “SQL Examples”SELECT COS(PI());
┌───────────┐│ cos(pi()) │├───────────┤│ -1 │└───────────┘