## Syntax ```mermaid %%{init: { 'theme': 'base', 'flowchart': { 'padding': '7', 'nodeSpacing': '20', 'rankSpacing': '20' }, 'themeVariables': { 'fontSize': '11px', 'fontFamily': 'Arial' } }}%% flowchart LR Start((START)) --> ASIN[ASIN]:::quoted ASIN --> End((END)) ``` ## Purpose The `ASIN` SQL function returns the angle of the provided sine (see [[SIN]]). Parameters: - Input: the sine to get the angle of. Returns: A number which represents the angle of the provided sine. ## Examples `ASIN` retrieves the angle of the sine 0: ```sql select asin(0) -------- 0 ```