https://dev.mysql.com/create-event.html
For example, AT CURRENT_TIMESTAMP + INTERVAL 3 WEEK + INTERVAL 2 DAY is equivalent to “three weeks and two days from now”. This enables event execution to proceed as defined regardless of any subsequent changes to the server time zone or ...
https://dev.mysql.com/date-and-time-literals.html
For example, '20070523' and '070523' are interpreted as '2007-05-23', but '071332' is illegal (it has nonsensical month and day parts) and becomes '0000-00-00'. For values specified as strings that include date part delimiters, it is unnecessary to ... Date and time values can be represented in several formats, such as quoted strings or as numbers, depending on the exact type of the value and other ...
https://dev.mysql.com/date-calculations.html
What if you want to know which animals have birthdays next month? For this type of calculation, year and day are irrelevant; you simply want to extract the month part of the birth column. MySQL provides several functions for extracting parts of ...
https://dev.mysql.com/using-date.html
If you enable the ALLOW_INVALID_DATES SQL mode, MySQL permits you to store dates that are given only limited checking: MySQL requires only that the day is in the range from 1 to 31 and the month is in the range from 1 to 12. This makes MySQL very ...
https://dev.mysql.com/sql-mode.html
Check only that the month is in the range from 1 to 12 and the day is in the range from 1 to 31. This may be useful for Web applications that obtain year, month, and day in three different fields and store exactly what the user inserted, without ...
https://dev.mysql.com/replication-options-binary-log.html
The default binary log expiration period is 2592000 seconds, which equals 30 days (30*24*60*60 seconds). The default applies if neither binlog_expire_logs_seconds nor the deprecated system variable expire_logs_days has a value set at startup. If a ... Startup Options Used with Binary Logging System Variables Used with Binary Logging You can use the mysqld options and system variables that are described in this section to affect the operation of the binary log as well as to control which statements are written to the binary ...
https://dev.mysql.com/audit-log-reference.html
audit_log_password_history_keep_days Property Value Command-Line Format --audit-log-password-history-keep-days=# Introduced 8.0.17 System Variable audit_log_password_history_keep_days Scope Global Dynamic Yes SET_VAR Hint Applies No Type Integer ...
https://dev.mysql.com/c-api-prepared-statement-data-structures.html
The year, month, and day elements are used for DATE, DATETIME, and TIMESTAMP values. Prepared statements use several data structures: To obtain a statement handler, pass a MYSQL connection handler to mysql_stmt_init(), which returns a pointer to a ...
https://dev.mysql.com/events-table.html
For example, if an event is created using ON SCHEDULE AT CURRENT_TIMESTAMP + '1:6' DAY_HOUR, and the event was created at 2018-02-09 14:05:30, the value shown in this column would be '2018-02-10 20:05:30'. The EVENTS table provides information ...
https://dev.mysql.com/mysql-calendar.html
Every country that has switched from the Julian to the Gregorian calendar has had to discard at least ten days during the switch. Monday Tuesday Wednesday Thursday Friday Saturday Sunday 1 2 3 4 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 ...