-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmax.html
More file actions
20 lines (17 loc) · 775 Bytes
/
max.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 MAX() -->
<div id="max-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 MAX() Function</h1>
<p>The <strong>MAX()</strong> function returns the largest value of the selected column.</p>
<h2>MAX() Syntax</h2>
<pre><code class="language-sql">SELECT MAX(column_name)
FROM table_name
WHERE condition;</code></pre>
<h2>MAX() Example</h2>
<p>The following SQL statement finds the highest patient's weight:</p>
<pre><code class="language-sql">SELECT MAX(weight) FROM patients;</code></pre>
</div>
</div>
</div>