SQL – MySQL ABS() Function
The MySQL ABS() function returns the absolute value of a number.
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 ADDDATE() function adds a time/date interval to a date and then returns the date.
The MySQL ADDTIME() function adds a time interval to a time/datetime and then returns the time/datetime.
The MySQL ASCII() function returns the ASCII value for the specific character.
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 BIN() function returns a binary representation of a number, as a string value.
The MySQL CASE statement goes through conditions and will stop reading and return a value when the first condition in the list is met.
The MySQL CAST() function converts a value of any type into the specified datatype.
The MySQL CEIL() function returns the smallest integer value that is bigger than or equal to a number.
The MySQL CEILING() function returns the smallest integer value that is bigger than or equal to a number.
The MySQL CHAR_LENGTH() function returns the length of a string in characters.
The MySQL CHARACTER_LENGTH() function returns the length of a string in characters.
The MySQL COALESCE() function returns the first non-null value in a list.
The MySQL CONCAT_WS() function adds two or more expressions together using a separator.