@@ -483,6 +483,9 @@ Functions
483
483
| | | |
484
484
| | | |
485
485
+-----------+------------------------------------------------+-------+
486
+ | ``%u `` | Day of the week (Monday is 1; Sunday is 7) | |
487
+ | | as a decimal number [1, 7]. | |
488
+ +-----------+------------------------------------------------+-------+
486
489
| ``%w `` | Weekday as a decimal number [0(Sunday),6]. | |
487
490
| | | |
488
491
+-----------+------------------------------------------------+-------+
@@ -515,6 +518,16 @@ Functions
515
518
| ``%Z `` | Time zone name (no characters if no time zone | |
516
519
| | exists). Deprecated. [1 ]_ | |
517
520
+-----------+------------------------------------------------+-------+
521
+ | ``%G `` | ISO 8601 year (similar to ``%Y `` but follows | |
522
+ | | the rules for the ISO 8601 calendar year). | |
523
+ | | The year starts with the week that contains | |
524
+ | | the first Thursday of the calendar year. | |
525
+ +-----------+------------------------------------------------+-------+
526
+ | ``%V `` | ISO 8601 week number (as a decimal number | |
527
+ | | [01,53]). The first week of the year is the | |
528
+ | | one that contains the first Thursday of the | |
529
+ | | year. Weeks start on Monday. | |
530
+ +-----------+------------------------------------------------+-------+
518
531
| ``%% `` | A literal ``'%' `` character. | |
519
532
+-----------+------------------------------------------------+-------+
520
533
0 commit comments