-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathday.html
More file actions
24 lines (19 loc) · 887 Bytes
/
day.html
File metadata and controls
24 lines (19 loc) · 887 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
<!-- SECCIÓN DAY DATE FUNCTION -->
<div id="day-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 DAY() Function</h1>
<p>The <strong>DAY()</strong> function returns the day part for a given date.</p>
<h2>Syntax</h2>
<pre><code class="language-sql">DAY(date)</code></pre>
<h2>Parameter Values</h2>
<ul>
<li><strong>date</strong>: Required. The date to extract the day from.</li>
</ul>
<h2>DAY() Example</h2>
<p>The following SQL statement shows the current day we're in:</p>
<pre><code class="language-sql">SELECT DAY(CURRENT_TIMESTAMP);</code></pre>
</div>
</div>
</div>