ASIN

Learn how to use the ASIN numeric function in PlaidCloud Lakehouse. Returns the arc sine of x, that is, the value whose sine is x. Includes syntax and examples.

Returns the arc sine of x, that is, the value whose sine is x. Returns NULL if x is not in the range -1 to 1.

Analyze Syntax

func.asin( <x> )

Analyze Examples

func.asin(0.2)

┌────────────────────┐
   func.asin(0.2)   
├────────────────────┤
 0.2013579207903308 
└────────────────────┘

SQL Syntax

ASIN( <x> )

SQL Examples

SELECT ASIN(0.2);

┌────────────────────┐
      asin(0.2)     
├────────────────────┤
 0.2013579207903308 
└────────────────────┘