-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmin.html
More file actions
20 lines (17 loc) · 775 Bytes
/
min.html
File metadata and controls
20 lines (17 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!-- SECCIÓN MIN() -->
<div id="min-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 MIN() Function</h1>
<p>The <strong>MIN()</strong> function returns the smallest value of the selected column.</p>
<h2>MIN() Syntax</h2>
<pre><code class="language-sql">SELECT MIN(column_name)
FROM table_name
WHERE condition;</code></pre>
<h2>MIN() Example</h2>
<p>The following SQL statement finds the lowest patient's weight:</p>
<pre><code class="language-sql">SELECT MIN(weight) FROM patients;</code></pre>
</div>
</div>
</div>