ABS

From SQLZoo
Jump to navigation Jump to search
Compatibility
ABS(f)
EngineOKAlternative
ingresYes
mysqlYes
oracleYes
postgresYes
sqlserverYes

ABS

ABS returns the absolute value. The output is positive even if the input is negative:

ABS(x) = x if x>=0
 ABS(x) = -x if x<0

ABS can be useful for testing values that are "close". For example this query shows each country that has area that is roughly 70 thousand. The value 70000 is the target value, 500 is the "tolerance" so the test ABS(area-70000)<500 tests that the area is between 70000-500 and 70000+500. That is 69500<area<70500

SELECT name, area FROM bbc
 WHERE ABS(area-70000)<500

See also

Language:Project:Language policy English  • Deutsch
DataWars, Data Science Practice Projects - LogoDataWars: Practice Data Science/Analysis with +100 Real Life Projects