Welcome to plsql4all.blogspot.com SQL, MYSQL, ORACLE, TERADATA, MONGODB, MARIADB, GREENPLUM, DB2, POSTGRESQL.

Wednesday 21 February 2024

abs Function in MYSQL

In MySQL, the ABS function also returns the absolute value of a number. Here's the syntax for the ABS function in MySQL:


ABS(numeric_expression)


Where numeric_expression is the numeric value for which you want to find the absolute value.


Here's an example:


SELECT ABS(-10) AS absolute_value;


This query will return the absolute value of -10, which is 10.


You can also use the ABS function in combination with other columns or expressions in your SQL queries. For example:


SELECT column1, ABS(column2) AS absolute_value

FROM your_table;


This query will return the values of column1 and the absolute values of column2 for each row in your_table.

No comments:

Post a Comment

Please provide your feedback in the comments section above. Please don't forget to follow.