📄️ ACOSReturns 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.
📄️ ASINReturns 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.
📄️ ATAN2Returns the arc tangent of the two variables x and y. It is similar to calculating the arc tangent of y / x, except that the signs of both arguments are used to determine the quadrant of the result.
📄️ SIGNReturns the sign of the argument as -1, 0, or 1, depending on whether X is negative, zero, or positive or NULL if the argument was NULL.