Movatterモバイル変換


[0]ホーム

URL:



Facebook
Postgres Pro
Facebook
Downloads
8.5. Date/Time Types
Prev UpChapter 8. Data TypesHome Next

8.5. Date/Time Types#

PostgreSQL supports the full set ofSQL date and time types, shown inTable 8.9. The operations available on these data types are described inSection 9.9. Dates are counted according to the Gregorian calendar, even in years before that calendar was introduced (seeSection B.6 for more information).

Table 8.9. Date/Time Types

NameStorage SizeDescriptionLow ValueHigh ValueResolution
timestamp [ (p) ] [ without time zone ]8 bytesboth date and time (no time zone)4713 BC294276 AD1 microsecond
timestamp [ (p) ] with time zone8 bytesboth date and time, with time zone4713 BC294276 AD1 microsecond
date4 bytesdate (no time of day)4713 BC5874897 AD1 day
time [ (p) ] [ without time zone ]8 bytestime of day (no date)00:00:0024:00:001 microsecond
time [ (p) ] with time zone12 bytestime of day (no date), with time zone00:00:00+155924:00:00-15591 microsecond
interval [fields ] [ (p) ]16 bytestime interval-178000000 years178000000 years1 microsecond

Note

The SQL standard requires that writing justtimestamp be equivalent totimestamp without time zone, andPostgreSQL honors that behavior.timestamptz is accepted as an abbreviation fortimestamp with time zone; this is aPostgreSQL extension.

time,timestamp, andinterval accept an optional precision valuep which specifies the number of fractional digits retained in the seconds field. By default, there is no explicit bound on precision. The allowed range ofp is from 0 to 6.

Theinterval type has an additional option, which is to restrict the set of stored fields by writing one of these phrases:

YEARMONTHDAYHOURMINUTESECONDYEAR TO MONTHDAY TO HOURDAY TO MINUTEDAY TO SECONDHOUR TO MINUTEHOUR TO SECONDMINUTE TO SECOND

Note that if bothfields andp are specified, thefields must includeSECOND, since the precision applies only to the seconds.

The typetime with time zone is defined by the SQL standard, but the definition exhibits properties which lead to questionable usefulness. In most cases, a combination ofdate,time,timestamp without time zone, andtimestamp with time zone should provide a complete range of date/time functionality required by any application.

8.5.1. Date/Time Input#

Date and time input is accepted in almost any reasonable format, including ISO 8601,SQL-compatible, traditionalPOSTGRES, and others. For some formats, ordering of day, month, and year in date input is ambiguous and there is support for specifying the expected ordering of these fields. Set theDateStyle parameter toMDY to select month-day-year interpretation,DMY to select day-month-year interpretation, orYMD to select year-month-day interpretation.

PostgreSQL is more flexible in handling date/time input than theSQL standard requires. SeeAppendix B for the exact parsing rules of date/time input and for the recognized text fields including months, days of the week, and time zones.

Remember that any date or time literal input needs to be enclosed in single quotes, like text strings. Refer toSection 4.1.2.7 for more information.SQL requires the following syntax

type [ (p) ] 'value'

wherep is an optional precision specification giving the number of fractional digits in the seconds field. Precision can be specified fortime,timestamp, andinterval types, and can range from 0 to 6. If no precision is specified in a constant specification, it defaults to the precision of the literal value (but not more than 6 digits).

Table 8.10 shows some possible inputs for thedate type.

Table 8.10. Date Input

ExampleDescription
1999-01-08ISO 8601; January 8 in any mode (recommended format)
January 8, 1999unambiguous in anydatestyle input mode
1/8/1999January 8 inMDY mode; August 1 inDMY mode
1/18/1999January 18 inMDY mode; rejected in other modes
01/02/03January 2, 2003 inMDY mode; February 1, 2003 inDMY mode; February 3, 2001 inYMD mode
1999-Jan-08January 8 in any mode
Jan-08-1999January 8 in any mode
08-Jan-1999January 8 in any mode
99-Jan-08January 8 inYMD mode, else error
08-Jan-99January 8, except error inYMD mode
Jan-08-99January 8, except error inYMD mode
19990108ISO 8601; January 8, 1999 in any mode
990108ISO 8601; January 8, 1999 in any mode
1999.008year and day of year
J2451187Julian date
January 8, 99 BCyear 99 BC

8.5.1.2. Times#

The time-of-day types aretime [ (p) ] without time zone andtime [ (p) ] with time zone.time alone is equivalent totime without time zone.

Valid input for these types consists of a time of day followed by an optional time zone. (SeeTable 8.11 andTable 8.12.) If a time zone is specified in the input fortime without time zone, it is silently ignored. You can also specify a date but it will be ignored, except when you use a time zone name that involves a daylight-savings rule, such asAmerica/New_York. In this case specifying the date is required in order to determine whether standard or daylight-savings time applies. The appropriate time zone offset is recorded in thetime with time zone value and is output as stored; it is not adjusted to the active time zone.

Table 8.11. Time Input

ExampleDescription
04:05:06.789ISO 8601
04:05:06ISO 8601
04:05ISO 8601
040506ISO 8601
04:05 AMsame as 04:05; AM does not affect value
04:05 PMsame as 16:05; input hour must be <= 12
04:05:06.789-8ISO 8601, with time zone as UTC offset
04:05:06-08:00ISO 8601, with time zone as UTC offset
04:05-08:00ISO 8601, with time zone as UTC offset
040506-08ISO 8601, with time zone as UTC offset
040506+0730ISO 8601, with fractional-hour time zone as UTC offset
040506+07:30:00UTC offset specified to seconds (not allowed in ISO 8601)
04:05:06 PSTtime zone specified by abbreviation
2003-04-12 04:05:06 America/New_Yorktime zone specified by full name

Table 8.12. Time Zone Input

ExampleDescription
PSTAbbreviation (for Pacific Standard Time)
America/New_YorkFull time zone name
PST8PDTPOSIX-style time zone specification
-8:00:00UTC offset for PST
-8:00UTC offset for PST (ISO 8601 extended format)
-800UTC offset for PST (ISO 8601 basic format)
-8UTC offset for PST (ISO 8601 basic format)
zuluMilitary abbreviation for UTC
zShort form ofzulu (also in ISO 8601)

Refer toSection 8.5.3 for more information on how to specify time zones.

8.5.1.3. Time Stamps#

Valid input for the time stamp types consists of the concatenation of a date and a time, followed by an optional time zone, followed by an optionalAD orBC. (Alternatively,AD/BC can appear before the time zone, but this is not the preferred ordering.) Thus:

1999-01-08 04:05:06

and:

1999-01-08 04:05:06 -8:00

are valid values, which follow theISO 8601 standard. In addition, the common format:

January 8 04:05:06 1999 PST

is supported.

TheSQL standard differentiatestimestamp without time zone andtimestamp with time zone literals by the presence of a+ or- symbol and time zone offset after the time. Hence, according to the standard,

TIMESTAMP '2004-10-19 10:23:54'

is atimestamp without time zone, while

TIMESTAMP '2004-10-19 10:23:54+02'

is atimestamp with time zone.PostgreSQL never examines the content of a literal string before determining its type, and therefore will treat both of the above astimestamp without time zone. To ensure that a literal is treated astimestamp with time zone, give it the correct explicit type:

TIMESTAMP WITH TIME ZONE '2004-10-19 10:23:54+02'

In a value that has been determined to betimestamp without time zone,PostgreSQL will silently ignore any time zone indication. That is, the resulting value is derived from the date/time fields in the input string, and is not adjusted for time zone.

Fortimestamp with time zone values, an input string that includes an explicit time zone will be converted to UTC (Universal Coordinated Time) using the appropriate offset for that time zone. If no time zone is stated in the input string, then it is assumed to be in the time zone indicated by the system'sTimeZone parameter, and is converted to UTC using the offset for thetimezone zone. In either case, the value is stored internally as UTC, and the originally stated or assumed time zone is not retained.

When atimestamp with time zone value is output, it is always converted from UTC to the currenttimezone zone, and displayed as local time in that zone. To see the time in another time zone, either changetimezone or use theAT TIME ZONE construct (seeSection 9.9.4).

Conversions betweentimestamp without time zone andtimestamp with time zone normally assume that thetimestamp without time zone value should be taken or given astimezone local time. A different time zone can be specified for the conversion usingAT TIME ZONE.

8.5.1.4. Special Values#

PostgreSQL supports several special date/time input values for convenience, as shown inTable 8.13. The valuesinfinity and-infinity are specially represented inside the system and will be displayed unchanged; but the others are simply notational shorthands that will be converted to ordinary date/time values when read. (In particular,now and related strings are converted to a specific time value as soon as they are read.) All of these values need to be enclosed in single quotes when used as constants in SQL commands.

Table 8.13. Special Date/Time Inputs

Input StringValid TypesDescription
epochdate,timestamp1970-01-01 00:00:00+00 (Unix system time zero)
infinitydate,timestamp,intervallater than all other time stamps
-infinitydate,timestamp,intervalearlier than all other time stamps
nowdate,time,timestampcurrent transaction's start time
todaydate,timestampmidnight (00:00) today
tomorrowdate,timestampmidnight (00:00) tomorrow
yesterdaydate,timestampmidnight (00:00) yesterday
allballstime00:00:00.00 UTC

The followingSQL-compatible functions can also be used to obtain the current time value for the corresponding data type:CURRENT_DATE,CURRENT_TIME,CURRENT_TIMESTAMP,LOCALTIME,LOCALTIMESTAMP. (SeeSection 9.9.5.) Note that these are SQL functions and arenot recognized in data input strings.

Caution

While the input stringsnow,today,tomorrow, andyesterday are fine to use in interactive SQL commands, they can have surprising behavior when the command is saved to be executed later, for example in prepared statements, views, and function definitions. The string can be converted to a specific time value that continues to be used long after it becomes stale. Use one of the SQL functions instead in such contexts. For example,CURRENT_DATE + 1 is safer than'tomorrow'::date.

8.5.2. Date/Time Output#

The output format of the date/time types can be set to one of the four styles ISO 8601,SQL (Ingres), traditionalPOSTGRES (Unixdate format), or German. The default is theISO format. (TheSQL standard requires the use of the ISO 8601 format. The name of theSQL output format is a historical accident.)Table 8.14 shows examples of each output style. The output of thedate andtime types is generally only the date or time part in accordance with the given examples. However, thePOSTGRES style outputs date-only values inISO format.

Table 8.14. Date/Time Output Styles

Style SpecificationDescriptionExample
ISOISO 8601, SQL standard1997-12-17 07:37:16-08
SQLtraditional style12/17/1997 07:37:16.00 PST
Postgresoriginal styleWed Dec 17 07:37:16 1997 PST
Germanregional style17.12.1997 07:37:16.00 PST

In theSQL and POSTGRES styles, day appears before month if DMY field ordering has been specified, otherwise month appears before day. (SeeSection 8.5.1 for how this setting also affects interpretation of input values.)Table 8.15 shows examples.

Table 8.15. Date Order Conventions

datestyle SettingInput OrderingExample Output
SQL, DMYday/month/year17/12/1997 15:37:16.00 CET
SQL, MDYmonth/day/year12/17/1997 07:37:16.00 PST
Postgres, DMYday/month/yearWed 17 Dec 07:37:16 1997 PST

In theISO style, the time zone is always shown as a signed numeric offset from UTC, with positive sign used for zones east of Greenwich. The offset will be shown ashh (hours only) if it is an integral number of hours, else ashh:mm if it is an integral number of minutes, else ashh:mm:ss. (The third case is not possible with any modern time zone standard, but it can appear when working with timestamps that predate the adoption of standardized time zones.) In the other date styles, the time zone is shown as an alphabetic abbreviation if one is in common use in the current zone. Otherwise it appears as a signed numeric offset in ISO 8601 basic format (hh orhhmm).

The date/time style can be selected by the user using theSET datestyle command, theDateStyle parameter in thepostgresql.conf configuration file, or thePGDATESTYLE environment variable on the server or client.

The formatting functionto_char (seeSection 9.8) is also available as a more flexible way to format date/time output.

8.5.3. Time Zones#

Time zones, and time-zone conventions, are influenced by political decisions, not just earth geometry. Time zones around the world became somewhat standardized during the 1900s, but continue to be prone to arbitrary changes, particularly with respect to daylight-savings rules.PostgreSQL uses the widely-used IANA (Olson) time zone database for information about historical time zone rules. For times in the future, the assumption is that the latest known rules for a given time zone will continue to be observed indefinitely far into the future.

PostgreSQL endeavors to be compatible with theSQL standard definitions for typical usage. However, theSQL standard has an odd mix of date and time types and capabilities. Two obvious problems are:

To address these difficulties, we recommend using date/time types that contain both date and time when using time zones. We donot recommend using the typetime with time zone (though it is supported byPostgreSQL for legacy applications and for compliance with theSQL standard).PostgreSQL assumes your local time zone for any type containing only date or time.

All timezone-aware dates and times are stored internally inUTC. They are converted to local time in the zone specified by theTimeZone configuration parameter before being displayed to the client.

PostgreSQL allows you to specify time zones in three different forms:

  • A full time zone name, for exampleAmerica/New_York. The recognized time zone names are listed in thepg_timezone_names view (seeSection 52.32).PostgreSQL uses the widely-used IANA time zone data for this purpose, so the same time zone names are also recognized by other software.

  • A time zone abbreviation, for examplePST. Such a specification merely defines a particular offset from UTC, in contrast to full time zone names which can imply a set of daylight savings transition rules as well. The recognized abbreviations are listed in thepg_timezone_abbrevs view (seeSection 52.31). You cannot set the configuration parametersTimeZone orlog_timezone to a time zone abbreviation, but you can use abbreviations in date/time input values and with theAT TIME ZONE operator.

  • In addition to the timezone names and abbreviations,PostgreSQL will accept POSIX-style time zone specifications, as described inSection B.5. This option is not normally preferable to using a named time zone, but it may be necessary if no suitable IANA time zone entry is available.

In short, this is the difference between abbreviations and full names: abbreviations represent a specific offset from UTC, whereas many of the full names imply a local daylight-savings time rule, and so have two possible UTC offsets. As an example,2014-06-04 12:00 America/New_York represents noon local time in New York, which for this particular date was Eastern Daylight Time (UTC-4). So2014-06-04 12:00 EDT specifies that same time instant. But2014-06-04 12:00 EST specifies noon Eastern Standard Time (UTC-5), regardless of whether daylight savings was nominally in effect on that date.

To complicate matters, some jurisdictions have used the same timezone abbreviation to mean different UTC offsets at different times; for example, in MoscowMSK has meant UTC+3 in some years and UTC+4 in others.PostgreSQL interprets such abbreviations according to whatever they meant (or had most recently meant) on the specified date; but, as with theEST example above, this is not necessarily the same as local civil time on that date.

In all cases, timezone names and abbreviations are recognized case-insensitively. (This is a change fromPostgreSQL versions prior to 8.2, which were case-sensitive in some contexts but not others.)

Neither timezone names nor abbreviations are hard-wired into the server; they are obtained from configuration files stored under.../share/timezone/ and.../share/timezonesets/ of the installation directory (seeSection B.4).

TheTimeZone configuration parameter can be set in the filepostgresql.conf, or in any of the other standard ways described inChapter 19. There are also some special ways to set it:

interval values can be written using the following verbose syntax:

[@]quantityunit [quantityunit...] [direction]

wherequantity is a number (possibly signed);unit ismicrosecond,millisecond,second,minute,hour,day,week,month,year,decade,century,millennium, or abbreviations or plurals of these units;direction can beago or empty. The at sign (@) is optional noise. The amounts of the different units are implicitly added with appropriate sign accounting.ago negates all the fields. This syntax is also used for interval output, ifIntervalStyle is set topostgres_verbose.

Quantities of days, hours, minutes, and seconds can be specified without explicit unit markings. For example,'1 12:59:10' is read the same as'1 day 12 hours 59 min 10 sec'. Also, a combination of years and months can be specified with a dash; for example'200-10' is read the same as'200 years 10 months'. (These shorter forms are in fact the only ones allowed by theSQL standard, and are used for output whenIntervalStyle is set tosql_standard.)

Interval values can also be written as ISO 8601 time intervals, using either theformat with designators of the standard's section 4.4.3.2 or thealternative format of section 4.4.3.3. The format with designators looks like this:

Pquantityunit [quantityunit ...] [ T [quantityunit ...]]

The string must start with aP, and may include aT that introduces the time-of-day units. The available unit abbreviations are given inTable 8.16. Units may be omitted, and may be specified in any order, but units smaller than a day must appear afterT. In particular, the meaning ofM depends on whether it is before or afterT.

Table 8.16. ISO 8601 Interval Unit Abbreviations

AbbreviationMeaning
YYears
MMonths (in the date part)
WWeeks
DDays
HHours
MMinutes (in the time part)
SSeconds

In the alternative format:

P [years-months-days] [ Thours:minutes:seconds]

the string must begin withP, and aT separates the date and time parts of the interval. The values are given as numbers similar to ISO 8601 dates.

When writing an interval constant with afields specification, or when assigning a string to an interval column that was defined with afields specification, the interpretation of unmarked quantities depends on thefields. For exampleINTERVAL '1' YEAR is read as 1 year, whereasINTERVAL '1' means 1 second. Also, field valuesto the right of the least significant field allowed by thefields specification are silently discarded. For example, writingINTERVAL '1 day 2:03:04' HOUR TO MINUTE results in dropping the seconds field, but not the day field.

According to theSQL standard all fields of an interval value must have the same sign, so a leading negative sign applies to all fields; for example the negative sign in the interval literal'-1 2:03:04' applies to both the days and hour/minute/second parts.PostgreSQL allows the fields to have different signs, and traditionally treats each field in the textual representation as independently signed, so that the hour/minute/second part is considered positive in this example. IfIntervalStyle is set tosql_standard then a leading sign is considered to apply to all fields (but only if no additional signs appear). Otherwise the traditionalPostgreSQL interpretation is used. To avoid ambiguity, it's recommended to attach an explicit sign to each field if any field is negative.

Internally,interval values are stored as three integral fields: months, days, and microseconds. These fields are kept separate because the number of days in a month varies, while a day can have 23 or 25 hours if a daylight savings time transition is involved. An interval input string that uses other units is normalized into this format, and then reconstructed in a standardized way for output, for example:

SELECT '2 years 15 months 100 weeks 99 hours 123456789 milliseconds'::interval;               interval--------------------------------------- 3 years 3 mons 700 days 133:17:36.789

Here weeks, which are understood as7 days, have been kept separate, while the smaller and larger time units were combined and normalized.

Input field values can have fractional parts, for example'1.5 weeks' or'01:02:03.45'. However, becauseinterval internally stores only integral fields, fractional values must be converted into smaller units. Fractional parts of units greater than months are rounded to be an integer number of months, e.g.'1.5 years' becomes'1 year 6 mons'. Fractional parts of weeks and days are computed to be an integer number of days and microseconds, assuming 30 days per month and 24 hours per day, e.g.,'1.75 months' becomes1 mon 22 days 12:00:00. Only seconds will ever be shown as fractional on output.

Table 8.17 shows some examples of validinterval input.

Table 8.17. Interval Input

ExampleDescription
1-2SQL standard format: 1 year 2 months
3 4:05:06SQL standard format: 3 days 4 hours 5 minutes 6 seconds
1 year 2 months 3 days 4 hours 5 minutes 6 secondsTraditional Postgres format: 1 year 2 months 3 days 4 hours 5 minutes 6 seconds
P1Y2M3DT4H5M6SISO 8601format with designators: same meaning as above
P0001-02-03T04:05:06ISO 8601alternative format: same meaning as above

8.5.5. Interval Output#

As previously explained,PostgreSQL storesinterval values as months, days, and microseconds. For output, the months field is converted to years and months by dividing by 12. The days field is shown as-is. The microseconds field is converted to hours, minutes, seconds, and fractional seconds. Thus months, minutes, and seconds will never be shown as exceeding the ranges 0–11, 0–59, and 0–59 respectively, while the displayed years, days, and hours fields can be quite large. (Thejustify_days andjustify_hours functions can be used if it is desirable to transpose large days or hours values into the next higher field.)

The output format of the interval type can be set to one of the four stylessql_standard,postgres,postgres_verbose, oriso_8601, using the commandSET intervalstyle. The default is thepostgres format.Table 8.18 shows examples of each output style.

Thesql_standard style produces output that conforms to the SQL standard's specification for interval literal strings, if the interval value meets the standard's restrictions (either year-month only or day-time only, with no mixing of positive and negative components). Otherwise the output looks like a standard year-month literal string followed by a day-time literal string, with explicit signs added to disambiguate mixed-sign intervals.

The output of thepostgres style matches the output ofPostgreSQL releases prior to 8.4 when theDateStyle parameter was set toISO.

The output of thepostgres_verbose style matches the output ofPostgreSQL releases prior to 8.4 when theDateStyle parameter was set to non-ISO output.

The output of theiso_8601 style matches theformat with designators described in section 4.4.3.2 of the ISO 8601 standard.

Table 8.18. Interval Output Style Examples

Style SpecificationYear-Month IntervalDay-Time IntervalMixed Interval
sql_standard1-23 4:05:06-1-2 +3 -4:05:06
postgres1 year 2 mons3 days 04:05:06-1 year -2 mons +3 days -04:05:06
postgres_verbose@ 1 year 2 mons@ 3 days 4 hours 5 mins 6 secs@ 1 year 2 mons -3 days 4 hours 5 mins 6 secs ago
iso_8601P1Y2MP3DT4H5M6SP-1Y-2M3D​T-4H-5M-6S


Prev Up Next
8.4. Binary Data Types Home 8.6. Boolean Type
pdfepub
Go to PostgreSQL 17
By continuing to browse this website, you agree to the use of cookies. Go toPrivacy Policy.

[8]ページ先頭

©2009-2025 Movatter.jp