1. NOW():

    Example:

    sqlCopy code
    SELECT NOW() AS current_datetime;
    
    

    Output: The current date and time.

  2. CURDATE():

    Example:

    sqlCopy code
    SELECT CURDATE() AS current_date;
    
    

    Output: The current date.

  3. CURTIME():

    Example:

    sqlCopy code
    SELECT CURTIME() AS current_time;
    
    

    Output: The current time.

  4. DATE_FORMAT():

    Example:

    sqlCopy code
    SELECT DATE_FORMAT(NOW(), '%Y-%m-%d %H:%i:%s') AS formatted_datetime;
    
    

    Output: The current date and time in a custom format.

  5. DATE_ADD() and DATE_SUB():

    Example:

    sqlCopy code
    SELECT DATE_ADD(NOW(), INTERVAL 3 DAY) AS future_date, DATE_SUB(NOW(), INTERVAL 2 HOUR) AS past_time;
    
    

    Output: The date and time three days from now, and two hours ago.

  6. DATEDIFF():

    Example:

    sqlCopy code
    SELECT DATEDIFF('2023-09-30', '2023-09-20') AS date_difference;
    
    

    Output: 10 days.

  7. TIMESTAMPDIFF():

    Example:

    sqlCopy code
    SELECT TIMESTAMPDIFF(MINUTE, '2023-09-20 10:00:00', '2023-09-20 11:30:00') AS minutes_difference;
    
    

    Output: 90 minutes.

  8. DAY(), MONTH(), YEAR():

    Example:

    sqlCopy code
    SELECT DAY('2023-09-20') AS day, MONTH('2023-09-20') AS month, YEAR('2023-09-20') AS year;
    
    

    Output: Day: 20, Month: 9, Year: 2023

  9. STR_TO_DATE():

    Example:

    sqlCopy code
    SELECT STR_TO_DATE('2023-09-20', '%Y-%m-%d') AS converted_date;
    
    

    Output: The date 2023-09-20.

  10. NOW() - INTERVAL x UNIT:

    Example:

    sqlCopy code
    SELECT NOW() - INTERVAL 3 DAY AS three_days_ago, NOW() - INTERVAL 2 HOUR AS two_hours_ago;
    
    

    Output: The date and time three days ago and two hours ago.

These date and time functions in MySQL are essential for working with date and time values, performing date calculations, and formatting date and time data as needed in your SQL queries.