|
190 | 190 | </li><li class="second"><a href="#table-manipulation-insert">テーブル挿入</a>
|
191 | 191 | </li><li><a href="#transaction">トランザクション</a>
|
192 | 192 | </li>
|
193 |
| - |
| 193 | +<li class="parent-li"><a href="#functions">関数等</a> |
| 194 | +</li> |
| 195 | +<li class="second"><a href="#datetime">日時関連</a> |
| 196 | +</li> |
194 | 197 |
|
195 | 198 | </ul>
|
196 | 199 |
|
@@ -1417,6 +1420,138 @@ <h2 id="transaction" class="sub-header">トランザクション</h2><div class=
|
1417 | 1420 | </tbody>
|
1418 | 1421 | </table>
|
1419 | 1422 | </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> |
1420 | 1555 | </div>
|
1421 | 1556 |
|
1422 | 1557 |
|
|
0 commit comments