-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabs.html
More file actions
25 lines (19 loc) · 903 Bytes
/
abs.html
File metadata and controls
25 lines (19 loc) · 903 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!-- SECCIÓN ABS NUMERIC FUNCTION -->
<div id="abs-section">
<div id="adsense-container" style="width: 350px; position: absolute; left: 0px;"></div>
<div class="inner-modal">
<div class="inner" style="padding: 0px;">
<h1>SQL ABS() Function</h1>
<p>The <strong>ABS()</strong> function returns the absolute (positive) value of a number.</p>
<h2>Syntax</h2>
<pre><code class="language-sql">ABS(number)</code></pre>
<h2>Parameter Values</h2>
<ul>
<li><strong>number</strong>: Required. A numeric value.</li>
</ul>
<h2>ABS() Example</h2>
<p>The following SQL statement returns the absolute value of <strong>-362.3</strong>:</p>
<pre><code class="language-sql">SELECT ABS(-362.3);</code></pre>
</div>
</div>
</div>