@@ -460,6 +460,9 @@ Functions
460
460
| | | |
461
461
| | | |
462
462
+-----------+------------------------------------------------+-------+
463
+ | ``%u `` | Day of the week (Monday is 1; Sunday is 7) | |
464
+ | | as a decimal number [1, 7]. | |
465
+ +-----------+------------------------------------------------+-------+
463
466
| ``%w `` | Weekday as a decimal number [0(Sunday),6]. | |
464
467
| | | |
465
468
+-----------+------------------------------------------------+-------+
@@ -492,6 +495,16 @@ Functions
492
495
| ``%Z `` | Time zone name (no characters if no time zone | |
493
496
| | exists). Deprecated. [1 ]_ | |
494
497
+-----------+------------------------------------------------+-------+
498
+ | ``%G `` | ISO 8601 year (similar to ``%Y `` but follows | |
499
+ | | the rules for the ISO 8601 calendar year). | |
500
+ | | The year starts with the week that contains | |
501
+ | | the first Thursday of the calendar year. | |
502
+ +-----------+------------------------------------------------+-------+
503
+ | ``%V `` | ISO 8601 week number (as a decimal number | |
504
+ | | [01,53]). The first week of the year is the | |
505
+ | | one that contains the first Thursday of the | |
506
+ | | year. Weeks start on Monday. | |
507
+ +-----------+------------------------------------------------+-------+
495
508
| ``%% `` | A literal ``'%' `` character. | |
496
509
+-----------+------------------------------------------------+-------+
497
510
0 commit comments