The INTERVAL clause requires an , which must be a time value in an acceptable format, and a value. : INTERVAL « Date Time « SQL / MySQL






The INTERVAL clause requires an , which must be a time value in an acceptable format, and a value.

     

<type>                   <expression> format
MICROSECOND              <microseconds>
SECOND                   <seconds>
MINUTE                   <minutes>
HOUR                     <hours>
DAY                      <days>
MONTH                    <months>
YEAR                     <years>
SECOND_MICROSECOND       '<seconds>.<microseconds>'
MINUTE_MICROSECOND       '<minutes>.<microseconds>'
MINUTE_SECOND            '<minutes>:<seconds>'
HOUR_MICROSECOND         '<hours>.<microseconds>'
HOUR_SECOND              '<hours>:<minutes>:<seconds>'
HOUR_MINUTE              '<hours>:<minutes>'
DAY_MICROSECOND          '<days>.<microseconds>'
DAY_SECOND               '<days> <hours>:<minutes>:<seconds>'
DAY_MINUTE               '<days> <hours>:<minutes>'
DAY_HOUR                 '<days> <hours>'
YEAR_MONTH               '<years>-<months>'

   
    
    
    
    
  








Related examples in the same category

1.The INTERVAL() function compares the first integer listed as an argument to the integers that follow the first
2.Calculating Intervals Between Times
3.Adding a Temporal Interval to a Time
4.Literal for timestamp type column
5.Some interval specifiers comprise both date and time parts.
6.Use the + and - operators to perform date interval addition and subtraction
7.Add date with interval
8.Get the date seven days after the payment date.
9.Add 7 day interval to a date
10.Add Month and day to a date
11.Add hour, seconds and microseconds to Date
12.Add one day to the date literal '2004-13-12'; next show the error messages.
13.To convert the interval from seconds to other units, perform the appropriate division