Difference between revisions of "ABS"
From SQLZOO
| Line 12: | Line 12: | ||
</table> | </table> | ||
<p>ABS returns the absolute value. The output is positive even if the input is negative:</p> | <p>ABS returns the absolute value. The output is positive even if the input is negative:</p> | ||
| − | <pre | + | <pre style='width:40ex'>ABS(x) = x if x>=0 |
ABS(x) = -x if x<0</pre> | ABS(x) = -x if x<0</pre> | ||
Revision as of 16:52, 12 July 2012
ABS
| Engine | OK | Alternative |
|---|---|---|
| ingres | Yes | |
| mysql | Yes | |
| oracle | Yes | |
| postgres | Yes | |
| sqlserver | Yes |
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
SELECT name, area FROM bbc WHERE ABS(area-70000)<500