Skip to content

Commit 488c8fa

Browse files
committed
リテラルとか定数とか諸々
1 parent 0b6dba4 commit 488c8fa

File tree

7 files changed

+2096
-417
lines changed

7 files changed

+2096
-417
lines changed

cache/database.html

+136-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,10 @@
190190
</li><li class="second"><a href="#table-manipulation-insert">テーブル挿入</a>
191191
</li><li><a href="#transaction">トランザクション</a>
192192
</li>
193-
193+
<li class="parent-li"><a href="#functions">関数等</a>
194+
</li>
195+
<li class="second"><a href="#datetime">日時関連</a>
196+
</li>
194197

195198
</ul>
196199

@@ -1417,6 +1420,138 @@ <h2 id="transaction" class="sub-header">トランザクション</h2><div class=
14171420
</tbody>
14181421
</table>
14191422
</div>
1423+
</div>
1424+
<h2 id="functions" class="sub-header">関数等</h2><h3 id="datetime" class="sub-header">日時関連</h3><div class="mode0">
1425+
<!-- <div class="table-responsive"> -->
1426+
<div style="margin-bottom: 16px;">
1427+
<table class="table table-striped">
1428+
<!-- head -->
1429+
<thead>
1430+
<tr>
1431+
<th></th>
1432+
<th>現在日時</th>
1433+
<th>日時→文字列</th>
1434+
<th>文字列→日時</th>
1435+
</tr>
1436+
</thead>
1437+
<!-- body -->
1438+
<tbody>
1439+
<tr class="engine-mysql">
1440+
<th>MySQL</th>
1441+
<td>
1442+
NOW()
1443+
</td>
1444+
<td>
1445+
DATE_FORMAT(col, '%Y/%m/%d %H:%i:%s')
1446+
</td>
1447+
<td>
1448+
STR_TO_DATE(col, '%Y/%m/%d %H:%i:%s')
1449+
</td>
1450+
</tr>
1451+
<tr class="engine-oracle">
1452+
<th>Oracle</th>
1453+
<td>
1454+
SYSDATE
1455+
</td>
1456+
<td>
1457+
TO_CHAR(col, 'YYYY/MM/DD HH24:MI:SS')
1458+
</td>
1459+
<td>
1460+
TO_DATE(col, 'YYYY/MM/DD HH24:MI:SS')
1461+
</td>
1462+
</tr>
1463+
<tr class="engine-postgresql">
1464+
<th>PostgreSQL</th>
1465+
<td>
1466+
NOW()
1467+
</td>
1468+
<td>
1469+
TO_CHAR(col, 'YYYY/MM/DD HH24:MI:SS')
1470+
</td>
1471+
<td>
1472+
TO_DATE(col, 'YYYY/MM/DD HH24:MI:SS')
1473+
</td>
1474+
</tr>
1475+
<tr class="engine-sqlite">
1476+
<th>SQLite</th>
1477+
<td>
1478+
DATETIME('NOW', 'LOCALTIME')
1479+
</td>
1480+
<td>
1481+
STRFTIME('%Y/%m/%d %H:%M:%S', col)
1482+
</td>
1483+
<td>
1484+
DATETIME(col)
1485+
</td>
1486+
</tr>
1487+
</tbody>
1488+
</table>
1489+
</div>
1490+
</div>
1491+
<div class="mode1">
1492+
<!-- <div class="table-responsive"> -->
1493+
<div style="margin-bottom: 16px;">
1494+
<table class="table table-striped">
1495+
<!-- head -->
1496+
<thead>
1497+
<tr>
1498+
<th></th>
1499+
<th class="engine-mysql">MySQL</th>
1500+
<th class="engine-oracle">Oracle</th>
1501+
<th class="engine-postgresql">PostgreSQL</th>
1502+
<th class="engine-sqlite">SQLite</th>
1503+
</tr>
1504+
</thead>
1505+
<!-- body -->
1506+
<tbody>
1507+
<tr>
1508+
<th>現在日時</th>
1509+
<td class="engine-mysql">
1510+
NOW()
1511+
</td>
1512+
<td class="engine-oracle">
1513+
SYSDATE
1514+
</td>
1515+
<td class="engine-postgresql">
1516+
NOW()
1517+
</td>
1518+
<td class="engine-sqlite">
1519+
DATETIME('NOW', 'LOCALTIME')
1520+
</td>
1521+
</tr>
1522+
<tr>
1523+
<th>日時→文字列</th>
1524+
<td class="engine-mysql">
1525+
DATE_FORMAT(col, '%Y/%m/%d %H:%i:%s')
1526+
</td>
1527+
<td class="engine-oracle">
1528+
TO_CHAR(col, 'YYYY/MM/DD HH24:MI:SS')
1529+
</td>
1530+
<td class="engine-postgresql">
1531+
TO_CHAR(col, 'YYYY/MM/DD HH24:MI:SS')
1532+
</td>
1533+
<td class="engine-sqlite">
1534+
STRFTIME('%Y/%m/%d %H:%M:%S', col)
1535+
</td>
1536+
</tr>
1537+
<tr>
1538+
<th>文字列→日時</th>
1539+
<td class="engine-mysql">
1540+
STR_TO_DATE(col, '%Y/%m/%d %H:%i:%s')
1541+
</td>
1542+
<td class="engine-oracle">
1543+
TO_DATE(col, 'YYYY/MM/DD HH24:MI:SS')
1544+
</td>
1545+
<td class="engine-postgresql">
1546+
TO_DATE(col, 'YYYY/MM/DD HH24:MI:SS')
1547+
</td>
1548+
<td class="engine-sqlite">
1549+
DATETIME(col)
1550+
</td>
1551+
</tr>
1552+
</tbody>
1553+
</table>
1554+
</div>
14201555
</div>
14211556

14221557

0 commit comments

Comments
 (0)