2.1.20 SmallDateTime

The SmallDateTime data type supports a value range from 1900-01-01 00:00:00 through 2079-06-06 23:59:59. The values of this data type are represented in the Unicode YYYY-MM-DD hh:mm:ss string format, as follows.

  
 Year = ("19"2DIGIT) / ("20"(%x30-36)DIGIT) / ("207"(%x30-39))
 Month = ("0"(%x31-39)) / ("1"("0"/"1"/"2"))
 Day = ("0"(%x31-39)) / (("1"/"2")DIGIT) / ("3"("0"/"1"))
 Hour = (("0"/"1")DIGIT) / ("2"(%x30-33))
 Min = (%x30-35)DIGIT
 SmallDateTime = Year "-" Month "-" Day SP Hour ":" Min (":00")