| ADDDATE | Adds a date interval and return the value. |
| ADDTIME | Adds a time interval and then returns the value. |
| CURDATE | Returns today’s date |
| CURRENT_DATE | Same as CURDATE |
| CURRENT_TIME | Returns the time at the moment |
| CURRENT_TIMESTAMP | Returns date and time at the moment. |
| CURTIME | Returns time at the moment. |
| DATE | Picks up the date from an expression of Date/Time. |
| DATEDIFF | Returns number of days between two given dates. |
| DATE_ADD | Similar to ADDDATE |
| DATE_FORMAT | Changes the format in which Date is displayed. |
| DATE_SUB | Subtracts a time interval and returns the value. |
| DAY | Returns the weekday for today. |
| DAYNAME | Returns the weekday name for any date. |
| DAYOFMONTH | Used to retrieve the index of the day of the month of any date. |
| DAYOFWEEK | Used to retrieve the index of the weekday of any date. |
| DAYOFYEAR | Used to retrieve the index of the day of a year of any date. |
| EXTRACT | Extracts a part of any date. |
| HOUR | Returns the “hours” in a given time. |
| LAST_DAY | Return the last day of the given month. |
| LOCALTIME | Returns the date and time at the moment. |
| LOCALTIMESTAMP | Similar to LOCALTIME. |
| MAKEDATE | Returns a date based on the year and the no. of days you specify. |
| MAKETIME | Returns a time based on the hours , minutes and seconds you specify. |
| MICROSECOND | Returns the microseconds in a given time. |
| MINUTE | Returns the minutes in a given time. |
| MONTH | Returns the month on a given date. |
| MONTHNAME | Same as MONTH but returns the name of the month. |
| NOW | Returns date and time at the moment. |
| PERIOD_ADD | Adds a specific number of months. |
| PERIOD_DIFF | Return the difference between two time periods. |
| SECOND | Return the seconds in a given time. |
| SEC_TO_TIME | Returns time in seconds. |
| STR_TO_DATE | Formats the date based on a particular string. |
| SUBDATE | Same as DATE_SUB. |
| SUBTIME | Subtracts a time interval. |
| SYSDATE | Returns the date/time reflected by the system. |
| TIME | Returns the time from a date/time value. |
| TIME_FORMAT | Time is displayed based on a certain format. |
| TIME_TO_SEC | Returns time in seconds. |
| TIMEDIFF | Returns the difference between two date-time values. |
| TO_DAYS | Returns the number of days between amy date and "0000-00-00" |