ACOS
Learn how to use the ACOS numeric function in PlaidCloud Lakehouse. Returns the arc cosine of x, that is, the value whose cosine is x. With syntax and examples.
Returns the arc cosine of x, that is, the value whose cosine is x. Returns NULL if x is not in the range -1 to 1.
Analyze Syntax
func.abs( <x> )
Analyze Examples
func.abs(1)
┌──────────────┐
│ func.acos(1) │
├──────────────┤
│ 0 │
└──────────────┘
SQL Syntax
ACOS( <x> )
SQL Examples
SELECT ACOS(1);
┌─────────┐
│ acos(1) │
├─────────┤
│ 0 │
└─────────┘