PHP – tan() Function
The PHP tan() function returns the tangent of a number.
The PHP tanh() function returns the hyperbolic tangent of a number, which is equal to sinh(x)/cosh(x).
The MySQL ACOS() function returns the arc cosine of a number. The specified number must be between -1 and 1, or NULL will be returned.
The MySQL ASIN() function returns the arc sine of a number. The specified number must be between -1 and 1, or NULL will be returned.
The MySQL ATAN() function returns the arc tangent of one or two numbers.
The MySQL AVG() function returns the average value of an expression (NULL values are ignored).
The MySQL COUNT() function returns the number of records returned by a select query. NULL values are not counted.
The MySQL EXP() function returns the natural logarithm e (2.718281…) raised to the power of the specified number.
The MySQL LN() function returns the natural logarithm of a number (greater than 0).
The MySQL LOG() function returns the natural logarithm of a specified number, or the logarithm of the number to the specified base.
The MySQL LOG2() function returns the natural logarithm of a number greater than 0 to base 2.
The MySQL LOG10() function returns the natural logarithm of a number greater than 0 to base 10.
The MySQL MOD() function returns the remainder of a number divided by another number.
The MySQL POW() function returns the value of a number raised to the power of another number.