Syntax:ABS(X)Returns the absolute value of X.
mysql> SELECT ABS(2); -> 2mysql> SELECT ABS(-32); -> 32