This shows you the differences between two versions of the page.
docu_round [2018/08/18 13:12] Niek created |
docu_round [2018/08/18 13:24] (current) Niek added quotes in examples |
||
---|---|---|---|
Line 10: | Line 10: | ||
<code> | <code> | ||
- | ROUND(123.456, 0) => 123 | + | ROUND('123.456', 0) => 123 |
- | ROUND(123.456, 1) => 123.5 | + | ROUND('123.456', 1) => 123.5 |
- | ROUND(-123.456, 2) => -123.46 | + | ROUND('-123.456', 2) => -123.46 |
</code> | </code> | ||