-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathceil.html
More file actions
25 lines (19 loc) · 924 Bytes
/
ceil.html
File metadata and controls
25 lines (19 loc) · 924 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 CEIL NUMERIC FUNCTION -->
<div id="ceil-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 CEIL() Function</h1>
<p>The <strong>CEIL()</strong> function returns a number rounded up to the nearest integer.</p>
<h2>Syntax</h2>
<pre><code class="language-sql">CEIL(number)</code></pre>
<h2>Parameter Values</h2>
<ul>
<li><strong>number</strong>: Required. The numeric value to round up.</li>
</ul>
<h2>CEIL() Example</h2>
<p>The following SQL statement rounds up <strong>25.1</strong> to <strong>26</strong>:</p>
<pre><code class="language-sql">SELECT CEIL(25.1);</code></pre>
</div>
</div>
</div>