YYYY-MM-DD hh:mi:ss |
Timestamp with no time zone or fractional seconds digits:- YYYY represents year. The valid range is 0001 through 9999, inclusive. You must specify all four digits.
- MM represents month. The valid range is 01 through 12, inclusive. You must specify both digits.
- DD represents day. The valid range is 01 through 31, inclusive, constrained by Gregorian calendar definitions. You must specify both digits, and follow them by a single pad character.
- hh represents the hour of the day. The valid range is 00–23, inclusive. You must specify both digits.
- mi represents minute of the hour. The valid range is 00–59, inclusive. You must specify both digits.
- ss represents seconds. The valid range is 00–61. You must specify both digits.
|
YYYY-MM-DD hh:mi:sssignhh:mi |
A timestamp with a specified time zone offset, but no fractional seconds digits:- YYYY represents year. The valid range is 0001 through 9999, inclusive. You must specify all four digits.
- MM represents month. The valid range is 01 through 12, inclusive. You must specify both digits
- DD represents day. The valid range is 01 through 31, inclusive, constrained by Gregorian calendar definitions. You must specify both digits, and follow them by a single pad character.
- hh represents the hour of the day. The valid range is 00–23, inclusive. You must specify both digits.
- mi represents minute of the hour. The valid range is 00–59, inclusive. You must specify both digits.
- ss represents seconds. The valid range is 00–61. You must specify both digits.
- signhh:mi represents the hours and minutes in the Time Zone offset. The valid range is -12:59 through +13:00, inclusive.
sign is + or -
|
YYYY-MM-DD hh:mi:ss.ssssss |
A timestamp with up to six fractional seconds digits, but no Time Zone:- YYYY represents year. The valid range is 0001 through 9999, inclusive. You must specify all four digits.
- MM represents month. The valid range is 01 through 12, inclusive. You must specify both digits.
- DD represents day. The valid range is 01 through 31, inclusive, constrained by Gregorian calendar definitions. You must specify both digits, and follow them by a single pad character.
- hh represents the hour of the day. The valid range is 00–23, inclusive. You must specify both digits.
- mi represents minute of the hour. The valid range is 00–59, inclusive. You must specify both digits.
- ss.ssssss represents seconds. The valid range for the first two digits is 00–61. You must specify both digits. You can specify from one to six fractional digits.
|
YYYY-MM-DD |
A timestamp with up to six fractional seconds and a time zone offset:- YYYY represents year. The valid range is 0001 through 9999, inclusive. You must specify all four digits.
- MM represents month. The valid range is 01 through 12, inclusive. You must specify both digits.
- DD represents day. The valid range is 01 through 31, inclusive, constrained by Gregorian calendar definitions. You must specify both digits, and follow them by a single pad character.
- hh represents the hour of the day. The valid range is 00–23, inclusive. You must specify both digits.
- mi represents minute of the hour. The valid range is 00–59, inclusive. You must specify both digits.
- ss.ssssss represents seconds. The valid range for the first two digits is 00–61. You must specify both digits. You can specify from one to six fractional digits.
- signhh:mi represents the hours and minutes in the Time Zone offset. The valid range is -12:59 through +13:00, inclusive.
sign is + or -
|