Difference between revisions of "ABS"
From SQLZOO
| (One intermediate revision by one user not shown) | |||
| Line 21: | Line 21: | ||
WHERE ABS(area-70000)<500 | WHERE ABS(area-70000)<500 | ||
</source> | </source> | ||
| + | </div> | ||
| + | <p>See also</p> | ||
<ul> | <ul> | ||
<li>[[CASE |CASE statement]]</li> | <li>[[CASE |CASE statement]]</li> | ||
</ul> | </ul> | ||
| + | |||
| + | {{Languages}} | ||
Latest revision as of 12:35, 6 September 2012
| ABS(f) | ||
|---|---|---|
| Engine | OK | Alternative |
| ingres | Yes | |
| mysql | Yes | |
| oracle | Yes | |
| postgres | Yes | |
| sqlserver | Yes | |
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: | English • Deutsch |
|---|