-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsqrt.html
More file actions
26 lines (20 loc) · 952 Bytes
/
sqrt.html
File metadata and controls
26 lines (20 loc) · 952 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
26
<!-- SECCIÓN SQRT NUMERIC FUNCTION -->
<div id="sqrt-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 SQRT() Function</h1>
<p>The <strong>SQRT()</strong> function returns the square root of a number.</p>
<h2>Syntax</h2>
<pre><code class="language-sql">SQRT(number)</code></pre>
<h2>Parameter Values</h2>
<ul>
<li><strong>number</strong>: Required. A number to calculate the square root of. Must be greater than 0.
</li>
</ul>
<h2>SQRT() Example</h2>
<p>The following SQL statement returns the square root of <strong>13</strong>:</p>
<pre><code class="language-sql">SELECT SQRT(13);</code></pre>
</div>
</div>
</div>