datatype.sgml
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:51k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1.  <chapter id="datatype">
  2.   <title id="datatype-title">Data Types</title>
  3.   <abstract>
  4.    <para>
  5.     Describes the built-in data types available in 
  6.     <productname>Postgres</productname>.
  7.    </para>
  8.   </abstract>
  9.   <para>
  10.    <productname>Postgres</productname> has a rich set of native data 
  11.    types available to users.
  12.    Users may add new types to <productname>Postgres</productname> using the
  13.    <command>DEFINE TYPE</command>
  14.    command described elsewhere.
  15.   </para>
  16.   <para>
  17.    In the context of data types, the following sections will discuss 
  18.    <acronym>SQL</acronym> standards compliance, porting issues, and usage.
  19.    Some <productname>Postgres</productname> types correspond directly to 
  20.    <acronym>SQL92</acronym>-compatible types. In other
  21.    cases, data types defined by <acronym>SQL92</acronym> syntax are mapped directly
  22.    into native <productname>Postgres</productname> types. 
  23.    Many of the built-in types have obvious external formats. However, several
  24.    types are either unique to <productname>Postgres</productname>, 
  25.    such as open and closed paths, or have
  26.    several possibilities for formats, such as the date and time types.
  27.   </para>
  28.   <para>
  29.    <table tocentry="1">
  30.     <title><productname>Postgres</productname> Data Types</title>
  31.     <titleabbrev>Data Types</titleabbrev>
  32.     <tgroup cols="3">
  33.      <thead>
  34.       <row>
  35.        <entry><productname>Postgres</productname> Type</entry>
  36.        <entry><acronym>SQL92</acronym> or <acronym>SQL3</acronym> Type</entry>
  37.        <entry>Description</entry>
  38.       </row>
  39.      </thead>
  40.      <tbody>
  41.       <row>
  42.        <entry>bool</entry>
  43.        <entry>boolean</entry>
  44.        <entry>logical boolean (true/false)</entry>
  45.       </row>
  46.       <row>
  47.        <entry>box</entry>
  48.        <entry></entry>
  49.        <entry>rectangular box in 2D plane</entry>
  50.       </row>
  51.       <row>
  52.        <entry>char(n)</entry>
  53.        <entry>character(n)</entry>
  54.        <entry>fixed-length character string</entry>
  55.       </row>
  56.       <row>
  57.        <entry>cidr</entry>
  58.        <entry></entry>
  59.        <entry>IP version 4 network or host address</entry>
  60.       </row>
  61.       <row>
  62.        <entry>circle</entry>
  63.        <entry></entry>
  64.        <entry>circle in 2D plane</entry>
  65.       </row>
  66.       <row>
  67.        <entry>date</entry>
  68.        <entry>date</entry>
  69.        <entry>calendar date without time of day</entry>
  70.       </row>
  71.       <row>
  72.        <entry>float4/8</entry>
  73.        <entry>float(p)</entry>
  74.        <entry>floating-point number with precision p</entry>
  75.       </row>
  76.       <row>
  77.        <entry>float8</entry>
  78.        <entry>real, double precision</entry>
  79.        <entry>double-precision floating-point number</entry>
  80.       </row>
  81.       <row>
  82.        <entry>inet</entry>
  83.        <entry></entry>
  84.        <entry>IP version 4 network or host address</entry>
  85.       </row>
  86.       <row>
  87.        <entry>int2</entry>
  88.        <entry>smallint</entry>
  89.        <entry>signed two-byte integer</entry>
  90.       </row>
  91.       <row>
  92.        <entry>int4</entry>
  93.        <entry>int, integer</entry>
  94.        <entry>signed 4-byte integer</entry>
  95.       </row>
  96.       <row>
  97.        <entry>int4</entry>
  98.        <entry>decimal(p,s)</entry>
  99.        <entry>exact numeric for p <= 9, s = 0</entry>
  100.       </row>
  101.       <row>
  102.        <entry>int4</entry>
  103.        <entry>numeric(p,s)</entry>
  104.        <entry>exact numeric for p == 9, s = 0</entry>
  105.       </row>
  106.       <row>
  107.        <entry>int8</entry>
  108.        <entry></entry>
  109.        <entry>signed 8-byte integer</entry>
  110.       </row>
  111.       <row>
  112.        <entry>line</entry>
  113.        <entry></entry>
  114.        <entry>infinite line in 2D plane</entry>
  115.       </row>
  116.       <row>
  117.        <entry>lseg</entry>
  118.        <entry></entry>
  119.        <entry>line segment in 2D plane</entry>
  120.       </row>
  121.       <row>
  122.        <entry>money</entry>
  123.        <entry>decimal(9,2)</entry>
  124.        <entry>US-style currency</entry>
  125.       </row>
  126.       <row>
  127.        <entry>path</entry>
  128.        <entry></entry>
  129.        <entry>open and closed geometric path in 2D plane</entry>
  130.       </row>
  131.       <row>
  132.        <entry>point</entry>
  133.        <entry></entry>
  134.        <entry>geometric point in 2D plane</entry>
  135.       </row>
  136.       <row>
  137.        <entry>polygon</entry>
  138.        <entry></entry>
  139.        <entry>closed geometric path in 2D plane</entry>
  140.       </row>
  141.       <row>
  142.        <entry>serial</entry>
  143.        <entry></entry>
  144.        <entry>unique id for indexing and cross-reference</entry>
  145.       </row>
  146.       <row>
  147.        <entry>time</entry>
  148.        <entry>time</entry>
  149.        <entry>time of day</entry>
  150.       </row>
  151.       <row>
  152.        <entry>timespan</entry>
  153.        <entry>interval</entry>
  154.        <entry>general-use time span</entry>
  155.       </row>
  156.       <row>
  157.        <entry>timestamp</entry>
  158.        <entry>timestamp with time zone</entry>
  159.        <entry>date/time</entry>
  160.       </row>
  161.       <row>
  162.        <entry>varchar(n)</entry>
  163.        <entry>character varying(n)</entry>
  164.        <entry>variable-length character string</entry>
  165.       </row>
  166.      </tbody>
  167.     </tgroup>
  168.    </table>
  169.   </para>
  170.   <para>
  171.    <note>
  172.     <para>
  173.      The <type>cidr</type> and <type>inet</type> types are designed to handle any IP type 
  174.      but only ipv4 is handled in the current implementation.  
  175.      Everything here that talks about ipv4 will apply to ipv6 in a future release.</para>
  176.    </note></para>
  177.   <para>
  178.    <table tocentry="1">
  179.     <title><productname>Postgres</productname> Function Constants</title>
  180.     <titleabbrev>Constants</titleabbrev>
  181.     <tgroup cols="3">
  182.      <thead>
  183.       <row>
  184.        <entry><productname>Postgres</productname> Function</entry>
  185.        <entry><acronym>SQL92</acronym> Constant</entry>
  186.        <entry>Description</entry>
  187.       </row>
  188.      </thead>
  189.      <tbody>
  190.       <row>
  191.        <entry>getpgusername()</entry>
  192.        <entry>current_user</entry>
  193.        <entry>user name in current session</entry>
  194.       </row>
  195.       <row>
  196.        <entry>date('now')</entry>
  197.        <entry>current_date</entry>
  198.        <entry>date of current transaction</entry>
  199.       </row>
  200.       <row>
  201.        <entry>time('now')</entry>
  202.        <entry>current_time</entry>
  203.        <entry>time of current transaction</entry>
  204.       </row>
  205.       <row>
  206.        <entry>timestamp('now')</entry>
  207.        <entry>current_timestamp</entry>
  208.        <entry>date and time of current transaction</entry>
  209.       </row>
  210.      </tbody>
  211.     </tgroup>
  212.    </table>
  213.   </para>
  214.   <para>
  215.    <productname>Postgres</productname> has features at the forefront of 
  216.    <acronym>ORDBMS</acronym> development. In addition to
  217.    <acronym>SQL3</acronym> conformance, substantial portions 
  218.    of <acronym>SQL92</acronym> are also supported.
  219.    Although we strive for <acronym>SQL92</acronym> compliance, 
  220.    there are some aspects of the standard
  221.    which are ill considered and which should not live through subsequent standards.
  222.    <productname>Postgres</productname> will not make great efforts to 
  223.    conform to these features; however, these tend to apply in little-used 
  224.    or obsure cases, and a typical user is not likely to run into them.</para>
  225.   <para>
  226.    Most of the input and output functions corresponding to the
  227.    base types (e.g., integers and floating point numbers) do some
  228.    error-checking.
  229.    Some of the operators and functions (e.g.,
  230.    addition and multiplication) do not perform run-time error-checking in the
  231.    interests of improving execution speed.
  232.    On some systems, for example, the numeric operators for some data types may
  233.    silently underflow or overflow.
  234.   </para>
  235.   <para>
  236.    Note that some of the input and output functions are not invertible.  That is,
  237.    the result of an output function may lose precision when compared to
  238.    the original input.
  239.    <note>
  240.     <para>
  241.      The original <productname>Postgres</productname> v4.2 code received from
  242.      Berkeley rounded all double precision floating point results to six digits for
  243.      output. Starting with v6.1, floating point numbers are allowed to retain
  244.      most of the intrinsic precision of the type (typically 15 digits for doubles, 
  245.      6 digits for 4-byte floats). 
  246.      Other types with underlying floating point fields (e.g. geometric
  247.      types) carry similar precision.</para>
  248.    </note>
  249.   </para>
  250.   <sect1>
  251.    <title>Numeric Types</title>
  252.    <para>
  253.     Numeric types consist of two- and four-byte integers and four- and eight-byte
  254.     floating point numbers.</para>
  255. <para>
  256. <table tocentry="1">
  257. <title><productname>Postgres</productname> Numeric Types</title>
  258. <titleabbrev>Numerics</titleabbrev>
  259. <tgroup cols="4">
  260. <thead>
  261.   <row>
  262.     <entry>Numeric Type</entry>
  263.     <entry>Storage</entry>
  264.     <entry>Description</entry>
  265.     <entry>Range</entry>
  266.   </row>
  267. </thead>
  268. <tbody>
  269.   <row>
  270.     <entry>float4</entry>
  271.     <entry>4 bytes</entry>
  272.     <entry>Variable-precision</entry>
  273.     <entry>6 decimal places</entry>
  274.   </row>
  275.   <row>
  276.     <entry>float8</entry>
  277.     <entry>8 bytes</entry>
  278.     <entry>Variable-precision</entry>
  279.     <entry>15 decimal places</entry>
  280.   </row>
  281.   <row>
  282.     <entry>int2</entry>
  283.     <entry>2 bytes</entry>
  284.     <entry>Fixed-precision</entry>
  285.     <entry>-32768 to +32767</entry>
  286.   </row>
  287.   <row>
  288.     <entry>int4</entry>
  289.     <entry>4 bytes</entry>
  290.     <entry>Usual choice for fixed-precision</entry>
  291.     <entry>-2147483648 to +2147483647</entry>
  292.   </row>
  293.   <row>
  294.     <entry>int8</entry>
  295.     <entry>8 bytes</entry>
  296.     <entry>Very large range fixed-precision</entry>
  297.     <entry>+/- &gt; 18 decimal places</entry>
  298.   </row>
  299.   <row>
  300.     <entry>serial</entry>
  301.     <entry>4 bytes</entry>
  302.     <entry>Identifer or cross-reference</entry>
  303.     <entry>0 to +2147483647</entry>
  304.   </row>
  305. </tbody>
  306. </tgroup>
  307. </table>
  308. </para>
  309. <para>
  310. The numeric types have a full set of corresponding arithmetic operators and
  311. functions. Refer to <xref endterm="math-opers" linkend="math-opers"> 
  312. and <xref endterm="math-funcs" linkend="math-funcs"> for more information.
  313.    </para>
  314. <para>
  315. The <type>serial</type> type is a special-case type constructed by
  316. <productname>Postgres</productname> from other existing components.
  317. It is typically used to create unique identifiers for table entries.
  318. In the current implementation, specifying
  319. <programlisting>
  320. CREATE TABLE <replaceable class="parameter">tablename</replaceable> (<replaceable class="parameter">colname</replaceable> SERIAL);
  321. </programlisting>
  322. is equivalent to specifying:
  323. <programlisting>
  324. CREATE SEQUENCE <replaceable class="parameter">tablename</replaceable>_<replaceable class="parameter">colname</replaceable>_seq;
  325. CREATE TABLE <replaceable class="parameter">tablename</replaceable>
  326.     (<replaceable class="parameter">colname</replaceable> INT4 DEFAULT nextval('<replaceable class="parameter">tablename</replaceable>_<replaceable class="parameter">colname</replaceable>_seq');
  327. CREATE UNIQUE INDEX <replaceable class="parameter">tablename</replaceable>_<replaceable class="parameter">colname</replaceable>_key on <replaceable class="parameter">tablename</replaceable> (<replaceable class="parameter">colname</replaceable>);
  328. </programlisting>
  329. <caution>
  330. <para>
  331. The implicit sequence created for the <type>serial</type> type will
  332. <emphasis>not</emphasis> be automatically removed when the table is dropped.
  333. So, the following commands executed in order will likely fail:
  334. <programlisting>
  335. CREATE TABLE <replaceable class="parameter">tablename</replaceable> (<replaceable class="parameter">colname</replaceable> SERIAL);
  336. DROP TABLE <replaceable class="parameter">tablename</replaceable>;
  337. CREATE TABLE <replaceable class="parameter">tablename</replaceable> (<replaceable class="parameter">colname</replaceable> SERIAL);
  338. </programlisting>
  339. The sequence will remain in the database until explicitly dropped using
  340. <command>DROP SEQUENCE</command>.</para>
  341. </caution>
  342.    </para>
  343.    <para>
  344.     The <type>int8</type> type may not be available on all platforms since
  345.     it relies on compiler support for this.
  346.    </para>
  347. </sect1>
  348. <sect1>
  349. <title>Monetary Type</title>
  350. <para>
  351. The <type>money</type> type supports US-style currency with 
  352. fixed decimal point representation.
  353. If <productname>Postgres</productname> is compiled with USE_LOCALE 
  354. then the money type should use the monetary conventions defined for
  355. <citetitle>locale(7)</citetitle>.
  356.    </para>
  357. <para>
  358. <table tocentry="1">
  359. <title><productname>Postgres</productname> Monetary Types</title>
  360. <titleabbrev>Money</titleabbrev>
  361. <tgroup cols="4">
  362. <thead>
  363.   <row>
  364.     <entry>Monetary Type</entry>
  365.     <entry>Storage</entry>
  366.     <entry>Description</entry>
  367.     <entry>Range</entry>
  368.   </row>
  369. </thead>
  370. <tbody>
  371.   <row>
  372.     <entry>money</entry>
  373.     <entry>4 bytes</entry>
  374.     <entry>Fixed-precision</entry>
  375.     <entry>-21474836.48 to +21474836.47</entry>
  376.   </row>
  377. </tbody>
  378. </tgroup>
  379. </table>
  380. </para>
  381.    <para>
  382.     <type>numeric</type>
  383.     will replace the money type, and should be preferred.
  384.    </para>
  385. </sect1>
  386. <sect1>
  387. <title>Character Types</title>
  388. <para>
  389. <acronym>SQL92</acronym> defines two primary character types:
  390.  <type>char</type> and <type>varchar</type>. 
  391. <productname>Postgres</productname> supports these types, in
  392. addition to the more general <type>text</type> type, 
  393. which unlike <type>varchar</type>
  394. does not require an upper
  395. limit to be declared on the size of the field.
  396. </para>
  397. <para>
  398. <table tocentry="1">
  399. <title><productname>Postgres</productname> Character Types</title>
  400. <titleabbrev>Characters</titleabbrev>
  401. <tgroup cols="4">
  402. <thead>
  403.   <row>
  404.     <entry>Character Type</entry>
  405.     <entry>Storage</entry>
  406.     <entry>Recommendation</entry>
  407.     <entry>Description</entry>
  408.   </row>
  409. </thead>
  410. <tbody>
  411.   <row>
  412.     <entry>char</entry>
  413.     <entry>1 byte</entry>
  414.     <entry><acronym>SQL92</acronym>-compatible</entry>
  415.     <entry>Single character</entry>
  416.   </row>
  417.   <row>
  418.     <entry>char(n)</entry>
  419.     <entry>(4+n) bytes</entry>
  420.     <entry><acronym>SQL92</acronym>-compatible</entry>
  421.     <entry>Fixed-length blank padded</entry>
  422.   </row>
  423.   <row>
  424.     <entry>text</entry>
  425.     <entry>(4+x) bytes</entry>
  426.     <entry>Best choice</entry>
  427.     <entry>Variable-length</entry>
  428.   </row>
  429.   <row>
  430.     <entry>varchar(n)</entry>
  431.     <entry>(4+n) bytes</entry>
  432.     <entry><acronym>SQL92</acronym>-compatible</entry>
  433.     <entry>Variable-length with limit</entry>
  434.   </row>
  435. </tbody>
  436. </tgroup>
  437. </table>
  438. </para>
  439. <para>
  440. There is one other fixed-length character type. 
  441. The <type>name</type> type
  442. only has one purpose and that is to provide 
  443. <productname>Postgres</productname> with a
  444. special type to use for internal names.  
  445. It is not intended for use by the general user.
  446. It's length is currently defined as 32 chars 
  447. but should be reference using NAMEDATALEN.
  448. This is set at compile time and may change in a future release.
  449. </para>
  450. <para>
  451. <table tocentry="1">
  452. <title><productname>Postgres</productname> Specialty Character Type</title>
  453. <titleabbrev>Specialty Characters</titleabbrev>
  454. <tgroup cols="3">
  455. <thead>
  456.   <row>
  457.     <entry>Character Type</entry>
  458.     <entry>Storage</entry>
  459.     <entry>Description</entry>
  460.   </row>
  461. </thead>
  462. <tbody>
  463.   <row>
  464.     <entry>name</entry>
  465.     <entry>32 bytes</entry>
  466.     <entry>Thirty-two character internal type</entry>
  467.   </row>
  468. </tbody>
  469. </tgroup>
  470. </table>
  471. </para>
  472. </sect1>
  473.   <sect1>
  474.    <title>Date/Time Types</title>
  475.    <para>
  476.     There are two fundamental kinds of date and time measurements
  477.     provided by <productname>Postgres</productname>:
  478.     absolute clock times and relative time intervals.
  479.     Both kinds of time measurements should demonstrate both
  480.     continuity and smoothness.
  481.    </para>
  482.    <para>
  483.     <productname>Postgres</productname> supplies two primary user-oriented 
  484.     date and time types,
  485.     <type>datetime</type> and <type>timespan</type>, as well as 
  486.     the related <acronym>SQL92</acronym> types <type>timestamp</type>,
  487.     <type>interval</type>,
  488.     <type>date</type> and <type>time</type>.
  489.    </para>
  490.    <para>
  491.     In a future release, <type>datetime</type> and <type>timespan</type> are likely
  492.     to merge with the <acronym>SQL92</acronym> types <type>timestamp</type>,
  493.     <type>interval</type>.
  494.     Other date and time types are also available, mostly
  495.     for historical reasons.
  496.    </para>
  497.    <para>
  498.     <table tocentry="1">
  499.      <title><productname>Postgres</productname> Date/Time Types</title>
  500.      <titleabbrev>Date/Time</titleabbrev>
  501.      <tgroup cols="4">
  502.       <thead>
  503.        <row>
  504. <entry>Date/Time Type</entry>
  505. <entry>Storage</entry>
  506. <entry>Recommendation</entry>
  507. <entry>Description</entry>
  508.        </row>
  509.       </thead>
  510.       <tbody>
  511.        <row>
  512. <entry>abstime</entry>
  513. <entry>4 bytes</entry>
  514. <entry>original date and time</entry>
  515. <entry>limited range</entry>
  516.        </row>
  517.        <row>
  518. <entry>date</entry>
  519. <entry>4 bytes</entry>
  520. <entry><acronym>SQL92</acronym> type</entry>
  521. <entry>wide range</entry>
  522.        </row>
  523.        <row>
  524. <entry>datetime</entry>
  525. <entry>8 bytes</entry>
  526. <entry>best general date and time</entry>
  527. <entry>wide range, high precision</entry>
  528.        </row>
  529.        <row>
  530. <entry>interval</entry>
  531. <entry>12 bytes</entry>
  532. <entry><acronym>SQL92</acronym> type</entry>
  533. <entry>equivalent to timespan</entry>
  534.        </row>
  535.        <row>
  536. <entry>reltime</entry>
  537. <entry>4 bytes</entry>
  538. <entry>original time interval</entry>
  539. <entry>limited range, low precision</entry>
  540.        </row>
  541.        <row>
  542. <entry>time</entry>
  543. <entry>4 bytes</entry>
  544. <entry><acronym>SQL92</acronym> type</entry>
  545. <entry>wide range</entry>
  546.        </row>
  547.        <row>
  548. <entry>timespan</entry>
  549. <entry>12 bytes</entry>
  550. <entry>best general time interval</entry>
  551. <entry>wide range, high precision</entry>
  552.        </row>
  553.        <row>
  554. <entry>timestamp</entry>
  555. <entry>4 bytes</entry>
  556. <entry><acronym>SQL92</acronym> type</entry>
  557. <entry>limited range</entry>
  558.        </row>
  559.       </tbody>
  560.      </tgroup>
  561.     </table>
  562.     <type>timestamp</type> is currently implemented separately from
  563.     <type>datetime</type>, although they share input and output routines.
  564.    </para>
  565.    <para>
  566.     <table tocentry="1">
  567.      <title><productname>Postgres</productname> Date/Time Ranges</title>
  568.      <titleabbrev>Ranges</titleabbrev>
  569.      <tgroup cols="4">
  570.       <thead>
  571.        <row>
  572. <entry>Date/Time Type</entry>
  573. <entry>Earliest</entry>
  574. <entry>Latest</entry>
  575. <entry>Resolution</entry>
  576.        </row>
  577.       </thead>
  578.       <tbody>
  579.        <row>
  580. <entry>abstime</entry>
  581. <entry>1901-12-14</entry>
  582. <entry>2038-01-19</entry>
  583. <entry>1 sec</entry>
  584.        </row>
  585.        <row>
  586. <entry>date</entry>
  587. <entry>4713 BC</entry>
  588. <entry>32767 AD</entry>
  589. <entry>1 day</entry>
  590.        </row>
  591.        <row>
  592. <entry>datetime</entry>
  593. <entry>4713 BC</entry>
  594. <entry>1465001 AD</entry>
  595. <entry>1 microsec to 14 digits</entry>
  596.        </row>
  597.        <row>
  598. <entry>interval</entry>
  599. <entry>-178000000 years</entry>
  600. <entry>178000000 years</entry>
  601. <entry>1 microsec</entry>
  602.        </row>
  603.        <row>
  604. <entry>reltime</entry>
  605. <entry>-68 years</entry>
  606. <entry>+68 years</entry>
  607. <entry>1 sec</entry>
  608.        </row>
  609.        <row>
  610. <entry>time</entry>
  611. <entry>00:00:00.00</entry>
  612. <entry>23:59:59.99</entry>
  613. <entry>1 microsec</entry>
  614.        </row>
  615.        <row>
  616. <entry>timespan</entry>
  617. <entry>-178000000 years</entry>
  618. <entry>178000000 years</entry>
  619. <entry>1 microsec (14 digits)</entry>
  620.        </row>
  621.        <row>
  622. <entry>timestamp</entry>
  623. <entry>1901-12-14</entry>
  624. <entry>2038-01-19</entry>
  625. <entry>1 sec</entry>
  626.        </row>
  627.       </tbody>
  628.      </tgroup>
  629.     </table>
  630.    </para>
  631.    <sect2>
  632.     <title>SQL92 Conventions</title>
  633.     <para>
  634.      <productname>Postgres</productname> endeavors to be compatible with
  635.      <acronym>SQL92</acronym> definitions for typical usage.
  636.      However, the <acronym>SQL92</acronym> standard has an odd mix of date and
  637.      time types and capabilities. Two obvious problems are:
  638.      <itemizedlist>
  639.       <listitem>
  640.        <para>
  641. Although the <type>date</type> type 
  642. does not have an associated time zone, the
  643. <type>time</type> type can or does.
  644.        </para>
  645.       </listitem>
  646.       <listitem>
  647.        <para>
  648. The default time zone is specified as a constant integer offset 
  649. from GMT/UTC.
  650.        </para>
  651.       </listitem>
  652.      </itemizedlist>
  653.      Time zones in the real world can have no meaning unless 
  654.      associated with a date as well as a time
  655.      since the offset may vary through the year with daylight savings
  656.      time boundaries.
  657.     </para>
  658.     <para>
  659.      To address these difficulties, <productname>Postgres</productname> 
  660.      associates time zones only with date and time
  661.      types which contain both date and time,
  662.      and assumes local time for any type containing only
  663.      date or time. Further, time zone support is derived from 
  664.      the underlying operating system
  665.      time zone capabilities, and hence can handle daylight savings time 
  666.      and other expected behavior.
  667.     </para>
  668.     <para>
  669.      In future releases, the number of date/time types will decrease, 
  670.      with the current implementation of 
  671.      <type>datetime</type> becoming <type>timestamp</type>, 
  672.      <type>timespan</type> becoming <type>interval</type>,
  673.      and (possibly) <type>abstime</type> and <type>reltime</type> 
  674.      being deprecated in favor of <type>timestamp</type> and <type>interval</type>.
  675.      The more arcane features of the date/time definitions from 
  676.      the <acronym>SQL92</acronym> standard are not likely to be pursued.
  677.     </para>
  678.    </sect2>
  679. <sect2>
  680. <title>Date/Time Styles</title>
  681. <para>
  682. Output formats can be set to one of four styles: 
  683. ISO-8601, <acronym>SQL</acronym> (Ingres), traditional
  684. Postgres, and German.
  685. <table tocentry="1">
  686. <title><productname>Postgres</productname> Date Styles</title>
  687. <titleabbrev>Styles</titleabbrev>
  688. <tgroup cols="3">
  689. <thead>
  690.   <row>
  691.     <entry>Style Specification</entry>
  692.     <entry>Description</entry>
  693.     <entry>Example</entry>
  694.   </row>
  695. </thead>
  696. <tbody>
  697.   <row>
  698.     <entry>ISO</entry>
  699.     <entry>ISO-8601 standard</entry>
  700.     <entry>1997-12-17 07:37:16-08</entry>
  701.   </row>
  702.   <row>
  703.     <entry><acronym>SQL</acronym></entry>
  704.     <entry>Traditional style</entry>
  705.     <entry>12/17/1997 07:37:16.00 PST</entry>
  706.   </row>
  707.   <row>
  708.     <entry>Postgres</entry>
  709.     <entry>Original style</entry>
  710.     <entry>Wed Dec 17 07:37:16 1997 PST</entry>
  711.   </row>
  712.   <row>
  713.     <entry>German</entry>
  714.     <entry>Regional style</entry>
  715.     <entry>17.12.1997 07:37:16.00 PST</entry>
  716.   </row>
  717. </tbody>
  718. </tgroup>
  719. </table>
  720. </para>
  721. <para>
  722. The <acronym>SQL</acronym> style has European and non-European (US) variants, 
  723. which determines whether month follows day or vica versa.
  724. <table tocentry="1">
  725. <title><productname>Postgres</productname> Date Order Conventions</title>
  726. <titleabbrev>Order</titleabbrev>
  727. <tgroup cols="3">
  728. <thead>
  729.   <row>
  730.     <entry>Style Specification</entry>
  731.     <entry>Description</entry>
  732.     <entry>Example</entry>
  733.   </row>
  734. </thead>
  735. <tbody>
  736.   <row>
  737.     <entry>European</entry>
  738.     <entry>Regional convention</entry>
  739.     <entry>17/12/1997 15:37:16.00 MET</entry>
  740.   </row>
  741.   <row>
  742.     <entry>NonEuropean</entry>
  743.     <entry>Regional convention</entry>
  744.     <entry>12/17/1997 07:37:16.00 PST</entry>
  745.   </row>
  746.   <row>
  747.     <entry>US</entry>
  748.     <entry>Regional convention</entry>
  749.     <entry>12/17/1997 07:37:16.00 PST</entry>
  750.   </row>
  751. </tbody>
  752. </tgroup>
  753. </table>
  754. </para>
  755. <para>
  756. There are several ways to affect the appearance of date/time types:
  757. <itemizedlist spacing="compact" mark="bullet">
  758. <listitem>
  759. <para>
  760. The PGDATESTYLE environment variable used by the backend directly 
  761. on postmaster startup.
  762. </para>
  763. </listitem>
  764. <listitem>
  765. <para>
  766. The PGDATESTYLE environment variable used by the frontend libpq 
  767. on session startup.
  768. </para>
  769. </listitem>
  770. <listitem>
  771. <para>
  772. <command>SET DATESTYLE</command> <acronym>SQL</acronym> command.
  773. </para>
  774. </listitem>
  775. </itemizedlist>
  776. </para>
  777.     <para>
  778.      For <productname>Postgres</productname> v6.4 (and earlier) 
  779.      the default date/time style is
  780.      "non-European traditional Postgres". 
  781.      In future releases, the default may become "ISO" (compatible with ISO-8601),
  782.      which alleviates date specification ambiguities and Y2K collation problems.
  783.     </para>
  784.    </sect2>
  785.    <sect2>
  786.     <title>Calendar</title>
  787.     <para>
  788.      <productname>Postgres</productname> uses Julian dates
  789.      for all date/time calculations. They have the nice property of correctly
  790.      predicting/calculating any date more recent than 4713BC
  791.      to far into the future, using the assumption that the length of the
  792.      year is 365.2425 days.
  793.     </para>
  794.     <para>
  795.      Date conventions before the 19th century make for interesting reading,
  796.      but are not consistant enough to warrant coding into a date/time handler.
  797.     </para>
  798.    </sect2>
  799.    <sect2>
  800.     <title>Time Zones</title>
  801.     <para>
  802.      <productname>Postgres</productname> obtains time zone support 
  803.      from the underlying operating system for dates between 1902 and
  804.      2038 (near the typical date limits for Unix-style
  805.      systems). Outside of this range, all dates are assumed to be
  806.      specified and used in Universal Coordinated Time (UTC).
  807.     </para>
  808.     <para>
  809.      All dates and times are stored internally in Universal UTC,
  810.      alternately known as Greenwich Mean Time (GMT). 
  811.      Times are converted to local time on the database server before being
  812.      sent to the client frontend, hence by default are in the server
  813.      time zone.
  814.     </para>
  815.     <para>
  816.      There are several ways to affect the time zone behavior:
  817.      <itemizedlist spacing="compact" mark="bullet">
  818.       <listitem>
  819.        <para>
  820. The TZ environment variable used by the backend directly
  821. on postmaster startup as the default time zone.
  822.        </para>
  823.       </listitem>
  824.       <listitem>
  825.        <para>
  826. The PGTZ environment variable set at the client used by libpq 
  827. to send time zone information to the backend upon connection.
  828.        </para>
  829.       </listitem>
  830.       <listitem>
  831.        <para>
  832. The <acronym>SQL</acronym> command <command>SET TIME ZONE</command>
  833. sets the time zone for the session.
  834.        </para>
  835.       </listitem>
  836.      </itemizedlist></para>
  837.     <para>
  838.      If an invalid time zone is specified,
  839.      the time zone becomes GMT (on most systems anyway).
  840.     </para>
  841.    </sect2>
  842.    <sect2>
  843.     <title>Date/Time Input</title>
  844.     <para>
  845.      General-use date and time is input using a wide range of
  846.      styles, including ISO-compatible, <acronym>SQL</acronym>-compatible, 
  847.      traditional <productname>Postgres</productname> 
  848.      and other permutations of date and time. In cases where interpretation
  849.      can be ambiguous (quite possible with many traditional styles of date 
  850.      specification) <productname>Postgres</productname> uses a style setting 
  851.      to resolve the ambiguity.
  852.     </para>
  853.     <para>
  854.      Most date and time types share code for data input. For those types
  855.      the input can have any of a wide variety of styles. For numeric date 
  856.      representations,
  857.      European and US conventions can differ, and the proper interpretation 
  858.      is obtained by using the <command>SET DATESTYLE</command>
  859.      command before entering data.
  860.      Note that the style setting does not preclude use of various styles for input;
  861.      it is used primarily to determine the output style and to resolve ambiguities.
  862.     </para>
  863.     <para>
  864.      The special values <literal>current</literal>,
  865.      <literal>infinity</literal> and <literal>-infinity</literal> are provided.
  866.      <literal>infinity</literal> specifies a time later than any other valid time, and
  867.      <literal>-infinity</literal> specifies a time earlier than any other valid time.
  868.      <literal>current</literal> indicates that the current time should be
  869.      substituted whenever this value appears in a computation.
  870.     </para>
  871.     <para>
  872.      The strings
  873.      <literal>now</literal>,
  874.      <literal>today</literal>,
  875.      <literal>yesterday</literal>,
  876.      <literal>tomorrow</literal>,
  877.      and <literal>epoch</literal>
  878.      can be used to specify time values.
  879.      <literal>now</literal>
  880.      means the current transaction time, and differs from
  881.      <literal>current</literal>
  882.      in that the current time is immediately substituted for it.
  883.      <literal>epoch</literal> means <literal>Jan 1 00:00:00 1970 GMT</literal>.
  884.     </para>
  885.     <para>
  886.      <table tocentry="1">
  887.       <title><productname>Postgres</productname> Date/Time Special Constants</title>
  888.       <titleabbrev>Constants</titleabbrev>
  889.       <tgroup cols="2">
  890.        <thead>
  891. <row>
  892.  <entry>Constant</entry>
  893.  <entry>Description</entry>
  894. </row>
  895.        </thead>
  896.        <tbody>
  897. <row>
  898.  <entry>current</entry>
  899.  <entry>Current transaction time, deferred</entry>
  900. </row>
  901. <row>
  902.  <entry>epoch</entry>
  903.  <entry>1970-01-01 00:00:00+00 (Unix system time zero)</entry>
  904. </row>
  905. <row>
  906.  <entry>infinity</entry>
  907.  <entry>Later than other valid times</entry>
  908. </row>
  909. <row>
  910.  <entry>-infinity</entry>
  911.  <entry>Earlier than other valid times</entry>
  912. </row>
  913. <row>
  914.  <entry>invalid</entry>
  915.  <entry>Illegal entry</entry>
  916. </row>
  917. <row>
  918.  <entry>now</entry>
  919.  <entry>Current transaction time</entry>
  920. </row>
  921. <row>
  922.  <entry>today</entry>
  923.  <entry>Midnight today</entry>
  924. </row>
  925. <row>
  926.  <entry>tomorrow</entry>
  927.  <entry>Midnight tomorrow</entry>
  928. </row>
  929. <row>
  930.  <entry>yesterday</entry>
  931.  <entry>Midnight yesterday</entry>
  932. </row>
  933.        </tbody>
  934.       </tgroup>
  935.      </table>
  936.     </para>
  937.     <para>
  938.      <table tocentry="1">
  939.       <title><productname>Postgres</productname> Date Input</title>
  940.       <titleabbrev>Date Inputs</titleabbrev>
  941.       <tgroup cols="2">
  942.        <thead>
  943. <row>
  944.  <entry>Example</entry>
  945.  <entry>Description</entry>
  946. </row>
  947.        </thead>
  948.        <tbody>
  949. <row>
  950.  <entry>January 8, 1999</entry>
  951.  <entry>Unambiguous text month</entry>
  952. </row>
  953. <row>
  954.  <entry>1999-01-08</entry>
  955.  <entry>ISO-8601</entry>
  956. </row>
  957. <row>
  958.  <entry>1/8/1999</entry>
  959.  <entry>US; read as August 1 in European mode</entry>
  960. </row>
  961. <row>
  962.  <entry>8/1/1999</entry>
  963.  <entry>European; read as August 1 in US mode</entry>
  964. </row>
  965. <row>
  966.  <entry>1/18/1999</entry>
  967.  <entry>US; read as January 18 in any mode</entry>
  968. </row>
  969. <row>
  970.  <entry>1999.008</entry>
  971.  <entry>Year and day of year</entry>
  972. </row>
  973. <row>
  974.  <entry>19990108</entry>
  975.  <entry>ISO-8601 year, month, day</entry>
  976. </row>
  977. <row>
  978.  <entry>990108</entry>
  979.  <entry>ISO-8601 year, month, day</entry>
  980. </row>
  981. <row>
  982.  <entry>1999.008</entry>
  983.  <entry>Year and day of year</entry>
  984. </row>
  985. <row>
  986.  <entry>99008</entry>
  987.  <entry>Year and day of year</entry>
  988. </row>
  989. <row>
  990.  <entry>January 8, 99 BC</entry>
  991.  <entry>Year 99 before the Christian Era</entry>
  992. </row>
  993.        </tbody>
  994.       </tgroup>
  995.      </table>
  996.     </para>
  997.     <para>
  998.      <table tocentry="1">
  999.       <title><productname>Postgres</productname> Month Abbreviations</title>
  1000.       <titleabbrev>Month Abbreviations</titleabbrev>
  1001.       <tgroup cols="2">
  1002.        <thead>
  1003. <row>
  1004.  <entry>Month</entry>
  1005.  <entry>Abbreviations</entry>
  1006. </row>
  1007.        </thead>
  1008.        <tbody>
  1009. <row>
  1010.  <entry>April</entry>
  1011.  <entry>Apr</entry>
  1012. </row>
  1013. <row>
  1014.  <entry>August</entry>
  1015.  <entry>Aug</entry>
  1016. </row>
  1017. <row>
  1018.  <entry>December</entry>
  1019.  <entry>Dec</entry>
  1020. </row>
  1021. <row>
  1022.  <entry>February</entry>
  1023.  <entry>Feb</entry>
  1024. </row>
  1025. <row>
  1026.  <entry>January</entry>
  1027.  <entry>Jan</entry>
  1028. </row>
  1029. <row>
  1030.  <entry>July</entry>
  1031.  <entry>Jul</entry>
  1032. </row>
  1033. <row>
  1034.  <entry>June</entry>
  1035.  <entry>Jun</entry>
  1036. </row>
  1037. <row>
  1038.  <entry>March</entry>
  1039.  <entry>Mar</entry>
  1040. </row>
  1041. <row>
  1042.  <entry>November</entry>
  1043.  <entry>Nov</entry>
  1044. </row>
  1045. <row>
  1046.  <entry>October</entry>
  1047.  <entry>Oct</entry>
  1048. </row>
  1049. <row>
  1050.  <entry>September</entry>
  1051.  <entry>Sep, Sept</entry>
  1052. </row>
  1053.        </tbody>
  1054.       </tgroup>
  1055.      </table>
  1056.      <note>
  1057.       <para>
  1058.        The month <literal>May</literal> has no explicit abbreviation, for obvious reasons.
  1059.       </para>
  1060.      </note>
  1061.     </para>
  1062.     <para>
  1063.      <table tocentry="1">
  1064.       <title><productname>Postgres</productname> Day of Week Abbreviations</title>
  1065.       <titleabbrev>Day of Week Abbreviations</titleabbrev>
  1066.       <tgroup cols="2">
  1067.        <thead>
  1068. <row>
  1069.  <entry>Day</entry>
  1070.  <entry>Abbreviation</entry>
  1071. </row>
  1072.        </thead>
  1073.        <tbody>
  1074. <row>
  1075.  <entry>Sunday</entry>
  1076.  <entry>Sun</entry>
  1077. </row>
  1078. <row>
  1079.  <entry>Monday</entry>
  1080.  <entry>Mon</entry>
  1081. </row>
  1082. <row>
  1083.  <entry>Tuesday</entry>
  1084.  <entry>Tue, Tues</entry>
  1085. </row>
  1086. <row>
  1087.  <entry>Wednesday</entry>
  1088.  <entry>Wed, Weds</entry>
  1089. </row>
  1090. <row>
  1091.  <entry>Thursday</entry>
  1092.  <entry>Thu, Thur, Thurs</entry>
  1093. </row>
  1094. <row>
  1095.  <entry>Friday</entry>
  1096.  <entry>Fri</entry>
  1097. </row>
  1098. <row>
  1099.  <entry>Saturday</entry>
  1100.  <entry>Sat</entry>
  1101. </row>
  1102.        </tbody>
  1103.       </tgroup>
  1104.      </table>
  1105.     </para>
  1106.     <para>
  1107.      <table tocentry="1">
  1108.       <title><productname>Postgres</productname> Time Input</title>
  1109.       <titleabbrev>Time Inputs</titleabbrev>
  1110.       <tgroup cols="2">
  1111.        <thead>
  1112. <row>
  1113.  <entry>Example</entry>
  1114.  <entry>Description</entry>
  1115. </row>
  1116.        </thead>
  1117.        <tbody>
  1118. <row>
  1119.  <entry>04:05:06.789</entry>
  1120.  <entry>ISO-8601, with all time fields</entry>
  1121. </row>
  1122. <row>
  1123.  <entry>04:05:06</entry>
  1124.  <entry>ISO-8601</entry>
  1125. </row>
  1126. <row>
  1127.  <entry>04:05</entry>
  1128.  <entry>ISO-8601</entry>
  1129. </row>
  1130. <row>
  1131.  <entry>040506</entry>
  1132.  <entry>ISO-8601</entry>
  1133. </row>
  1134. <row>
  1135.  <entry>04:05 AM</entry>
  1136.  <entry>Same as 04:05; AM does not affect value</entry>
  1137. </row>
  1138. <row>
  1139.  <entry>04:05 PM</entry>
  1140.  <entry>Same as 16:05; input hour must be <= 12</entry>
  1141. </row>
  1142. <row>
  1143.  <entry>z</entry>
  1144.  <entry>Same as 00:00:00</entry>
  1145. </row>
  1146. <row>
  1147.  <entry>zulu</entry>
  1148.  <entry>Same as 00:00:00</entry>
  1149. </row>
  1150. <row>
  1151.  <entry>allballs</entry>
  1152.  <entry>Same as 00:00:00</entry>
  1153. </row>
  1154.        </tbody>
  1155.       </tgroup>
  1156.      </table>
  1157.     </para>
  1158.     <para>
  1159.      <table tocentry="1">
  1160.       <title><productname>Postgres</productname> Time Zone Input</title>
  1161.       <titleabbrev>Time Zone Inputs</titleabbrev>
  1162.       <tgroup cols="2">
  1163.        <thead>
  1164. <row>
  1165.  <entry>Time Zone</entry>
  1166.  <entry>Description</entry>
  1167. </row>
  1168.        </thead>
  1169.        <tbody>
  1170. <row>
  1171.  <entry>PST</entry>
  1172.  <entry>Pacific Standard Time</entry>
  1173. </row>
  1174. <row>
  1175.  <entry>-8:00</entry>
  1176.  <entry>ISO-8601 offset for PST</entry>
  1177. </row>
  1178. <row>
  1179.  <entry>-800</entry>
  1180.  <entry>ISO-8601 offset for PST</entry>
  1181. </row>
  1182. <row>
  1183.  <entry>-8</entry>
  1184.  <entry>ISO-8601 offset for PST</entry>
  1185. </row>
  1186.        </tbody>
  1187.       </tgroup>
  1188.      </table>
  1189.     </para>
  1190.     <para>
  1191.      See <xref linkend="datetime-appendix-title" endterm="datetime-appendix-title">
  1192.      for details on time zones recognized by <productname>Postgres</productname>.
  1193.      <note>
  1194.       <para>
  1195.        If the compiler option USE_AUSTRALIAN_RULES is set 
  1196.        then <literal>EST</literal> refers to Australia Eastern Std Time,
  1197.        which has an offset of +10:00 hours from UTC.
  1198.       </para>
  1199.      </note>
  1200.     </para>
  1201.     <para>
  1202.      Australian time zones and their naming variants
  1203.      account for fully one quarter of all time zones in the 
  1204.      <productname>Postgres</productname> time zone lookup table.
  1205.     </para>
  1206.    </sect2>
  1207.    <sect2>
  1208.     <title>datetime</title>
  1209. <para>
  1210. General-use date and time is input using a wide range of
  1211. styles, including ISO-compatible, <acronym>SQL</acronym>-compatible, traditional
  1212. <productname>Postgres</productname> (see section on "absolute time")
  1213. and other permutations of date and time. Output styles can be ISO-compatible,
  1214. <acronym>SQL</acronym>-compatible, or traditional 
  1215. <productname>Postgres</productname>, with the default set to be compatible
  1216. with <productname>Postgres</productname> v6.0.
  1217. </para>
  1218. <para>
  1219. <type>datetime</type> is specified using the following syntax:
  1220. <programlisting>
  1221. Year-Month-Day [ Hour : Minute : Second ]      [AD,BC] [ Timezone ]
  1222.   YearMonthDay [ Hour : Minute : Second ]      [AD,BC] [ Timezone ]
  1223.      Month Day [ Hour : Minute : Second ] Year [AD,BC] [ Timezone ]
  1224. where
  1225.     Year is 4013 BC, ..., very large
  1226.     Month is Jan, Feb, ..., Dec or 1, 2, ..., 12
  1227.     Day is 1, 2, ..., 31
  1228.     Hour is 00, 02, ..., 23
  1229.     Minute is 00, 01, ..., 59
  1230.     Second is 00, 01, ..., 59 (60 for leap second)
  1231.     Timezone is 3 characters or ISO offset to GMT
  1232. </programlisting>
  1233.     </para>
  1234. <para>
  1235. Valid dates are from Nov 13 00:00:00 4013 BC GMT to far into the future.
  1236. Timezones are either three characters (e.g. "GMT" or "PST") or ISO-compatible
  1237. offsets to GMT (e.g. "-08" or "-08:00" when in Pacific Standard Time).
  1238. Dates are stored internally in Greenwich Mean Time. Input and output routines 
  1239. translate time to the local time zone of the server.
  1240. </para></sect2>
  1241. <sect2>
  1242. <title><type>timespan</type></title>
  1243. <para>
  1244. General-use time span is input using a wide range of
  1245. syntaxes, including ISO-compatible, <acronym>SQL</acronym>-compatible, 
  1246. traditional
  1247. <productname>Postgres</productname> (see section on "relative time")
  1248.  and other permutations of time span. Output formats can be ISO-compatible,
  1249. <acronym>SQL</acronym>-compatible, or traditional 
  1250. <productname>Postgres</productname>, 
  1251. with the default set to be <productname>Postgres</productname>-compatible.
  1252. Months and years are a "qualitative" time interval, and are stored separately
  1253. from the other "quantitative" time intervals such as day or hour. 
  1254. For date arithmetic,
  1255. the qualitative time units are instantiated in the context of the 
  1256. relevant date or time.
  1257.     </para>
  1258. <para>
  1259. Time span is specified with the following syntax:
  1260. <programlisting>
  1261.   Quantity Unit [Quantity Unit...] [Direction]
  1262. @ Quantity Unit [Direction]
  1263. where 
  1264.     Quantity is ..., <literal>-1</literal>, <literal>0</literal>, <literal>1</literal>, <literal>2</literal>, ...
  1265.     Unit is <literal>second</literal>, <literal>minute</literal>, <literal>hour</literal>, <literal>day</literal>, <literal>week</literal>, <literal>month</literal>, <literal>year</literal>,
  1266.       <literal>decade</literal>, <literal>century</literal>, <literal>millenium</literal>, or abbreviations or plurals of these units.
  1267.     Direction is <literal>ago</literal>.
  1268. </programlisting>
  1269. </para>
  1270. </sect2>
  1271. <sect2>
  1272. <title>abstime</title>
  1273.     <para>
  1274.      Absolute time (<type>abstime</type>) is a limited-range (+/- 68 years) and 
  1275.      limited-precision (1 sec)
  1276.      date data type. <type>datetime</type> may be preferred, since it
  1277.      covers a larger range with greater precision.
  1278.     </para>
  1279. <para>
  1280. Absolute time is specified using the following syntax:
  1281. <programlisting>
  1282. Month  Day [ Hour : Minute : Second ]  Year [ Timezone ]
  1283. where
  1284.     Month is Jan, Feb, ..., Dec
  1285.     Day is 1, 2, ..., 31
  1286.     Hour is 01, 02, ..., 24
  1287.     Minute is 00, 01, ..., 59
  1288.     Second is 00, 01, ..., 59
  1289.     Year is 1901, 1902, ..., 2038
  1290. </programlisting>
  1291. </para>
  1292. <para>
  1293.      Valid dates are from <literal>Dec 13 20:45:53 1901 GMT</literal>
  1294.      to <literal>Jan 19 03:14:04 2038 GMT</literal>. 
  1295. <note>
  1296. <title>Historical Note</title>
  1297. <para>
  1298. As of Version 3.0, times are no longer read and written
  1299. using Greenwich Mean Time; the input and output routines default to
  1300. the local time zone.</para>
  1301. </note>
  1302. All special values allowed for <type>datetime</type> are also 
  1303. allowed for "absolute time".
  1304. </para>
  1305. </sect2>
  1306. <sect2>
  1307. <title>reltime</title>
  1308. <para>
  1309. Relative time <type>reltime</type> is a limited-range (+/- 68 years)
  1310.  and limited-precision (1 sec) time span data type.
  1311. <type>timespan</type> should be preferred, since it
  1312. covers a larger range with greater precision and, more importantly, 
  1313. can distinguish between
  1314. relative units (months and years) and quantitative units (days, hours, etc). 
  1315. Instead, reltime
  1316. must force months to be exactly 30 days, so time arithmetic does not 
  1317. always work as expected.
  1318.      For example, adding one reltime <literal>year</literal> to abstime <literal>today</literal> does not 
  1319. produce today's date one year from
  1320. now, but rather a date 360 days from today.
  1321. </para>
  1322. <para>
  1323. <type>reltime</type> shares input and output routines with the other 
  1324. time span types.
  1325. The section on <type>timespan</type> covers this in more detail.
  1326. </para>
  1327. </sect2>
  1328. <sect2>
  1329. <title><type>timestamp</type></title>
  1330. <para>
  1331. This is currently a limited-range absolute time which closely resembles the
  1332. abstime
  1333. data type. It shares the general input parser with the other date/time types.
  1334. In future releases this type will absorb the capabilities of the 
  1335. <type>datetime</type> type
  1336. and will move toward <acronym>SQL92</acronym> compliance.
  1337. </para>
  1338. <para>
  1339. <type>timestamp</type> is specified using the same syntax as for 
  1340. <type>datetime</type>.
  1341. </para>
  1342. </sect2>
  1343. <sect2>
  1344. <title><type>interval</type></title>
  1345. <para>
  1346. <type>interval</type> is an <acronym>SQL92</acronym> data type which is
  1347. currently mapped to the <type>timespan</type> 
  1348. <productname>Postgres</productname> data type.
  1349. </para>
  1350. </sect2>
  1351. <sect2>
  1352. <title>tinterval</title>
  1353. <para>
  1354. Time ranges are specified as:
  1355. <programlisting>
  1356. [ 'abstime' 'abstime']
  1357. where
  1358.     abstime is a time in the absolute time format.
  1359. </programlisting>
  1360. Special abstime values such as 
  1361. <literal>current', <literal>infinity' and <literal>-infinity' can be used.</literal></literal></literal>
  1362. </para></sect2>
  1363. </sect1>
  1364. <sect1>
  1365. <title>Boolean Type</title>
  1366. <para>
  1367. <productname>Postgres</productname> supports <type>bool</type> as
  1368. the <acronym>SQL3</acronym> boolean type.
  1369. <type>bool</type> can have one of only two states: 'true' or 'false'. 
  1370. A third state, 'unknown', is not
  1371. implemented and is not suggested in <acronym>SQL3</acronym>; 
  1372. <acronym>NULL</acronym> is an
  1373. effective substitute. <type>bool</type> can be used in any boolean expression, 
  1374. and boolean expressions
  1375. always evaluate to a result compatible with this type.</para>
  1376. <para>
  1377. <type>bool</type> uses 1 byte of storage.
  1378. </para>
  1379. <para>
  1380. <table tocentry="1">
  1381. <title><productname>Postgres</productname> Boolean Type</title>
  1382. <titleabbrev>Booleans</titleabbrev>
  1383. <tgroup cols="3">
  1384. <thead>
  1385.   <row>
  1386.     <entry>State</entry>
  1387.     <entry>Output</entry>
  1388.     <entry>Input</entry>
  1389.   </row>
  1390. </thead>
  1391. <tbody>
  1392.   <row>
  1393.     <entry>True</entry>
  1394.     <entry>'t'</entry>
  1395.     <entry>TRUE, 't', 'true', 'y', 'yes', '1'</entry>
  1396.   </row>
  1397.   <row>
  1398.     <entry>False</entry>
  1399.     <entry>'f'</entry>
  1400.     <entry>FALSE, 'f', 'false', 'n', 'no', '0'</entry>
  1401.   </row>
  1402. </tbody>
  1403. </tgroup>
  1404. </table>
  1405. </para>
  1406. </sect1>
  1407. <sect1>
  1408. <title>Geometric Types</title>
  1409. <para>
  1410. Geometric types represent two-dimensional spatial objects. 
  1411. The most fundamental type,
  1412. the point, forms the basis for all of the other types.
  1413. </para>
  1414. <para>
  1415. <table tocentry="1">
  1416. <title><productname>Postgres</productname> Geometric Types</title>
  1417. <titleabbrev>Geometrics</titleabbrev>
  1418. <tgroup cols="4">
  1419. <thead>
  1420.   <row>
  1421.     <entry>Geometric Type</entry>
  1422.     <entry>Storage</entry>
  1423.     <entry>Representation</entry>
  1424.     <entry>Description</entry>
  1425.   </row>
  1426. </thead>
  1427. <tbody>
  1428.   <row>
  1429.     <entry>point</entry>
  1430.     <entry>16 bytes</entry>
  1431.     <entry>(x,y)</entry>
  1432.     <entry>Point in space</entry>
  1433.   </row>
  1434.   <row>
  1435.     <entry>line</entry>
  1436.     <entry>32 bytes</entry>
  1437.     <entry>((x1,y1),(x2,y2))</entry>
  1438.     <entry>Infinite line</entry>
  1439.   </row>
  1440.   <row>
  1441.     <entry>lseg</entry>
  1442.     <entry>32 bytes</entry>
  1443.     <entry>((x1,y1),(x2,y2))</entry>
  1444.     <entry>Finite line segment</entry>
  1445.   </row>
  1446.   <row>
  1447.     <entry>box</entry>
  1448.     <entry>32 bytes</entry>
  1449.     <entry>((x1,y1),(x2,y2))</entry>
  1450.     <entry>Rectangular box</entry>
  1451.   </row>
  1452.   <row>
  1453.     <entry>path</entry>
  1454.     <entry>4+32n bytes</entry>
  1455.     <entry>((x1,y1),...)</entry>
  1456.     <entry>Closed path (similar to polygon)</entry>
  1457.   </row>
  1458.   <row>
  1459.     <entry>path</entry>
  1460.     <entry>4+32n bytes</entry>
  1461.     <entry>[(x1,y1),...]</entry>
  1462.     <entry>Open path</entry>
  1463.   </row>
  1464.   <row>
  1465.     <entry>polygon</entry>
  1466.     <entry>4+32n bytes</entry>
  1467.     <entry>((x1,y1),...)</entry>
  1468.     <entry>Polygon (similar to closed path)</entry>
  1469.   </row>
  1470.   <row>
  1471.     <entry>circle</entry>
  1472.     <entry>24 bytes</entry>
  1473.     <entry><(x,y),r></entry>
  1474.     <entry>Circle (center and radius)</entry>
  1475.   </row>
  1476. </tbody>
  1477. </tgroup>
  1478. </table>
  1479. </para>
  1480. <para>
  1481. A rich set of functions and operators is available to perform various geometric
  1482. operations such as scaling, translation, rotation, and determining 
  1483. intersections.
  1484. </para>
  1485. <sect2>
  1486. <title>Point</title>
  1487.     <para>
  1488.      Points are the fundamental two-dimensional building block for geometric types.
  1489.     </para>
  1490. <para>
  1491. <type>point</type> is specified using the following syntax:
  1492. <programlisting>
  1493. ( x , y )
  1494.   x , y
  1495. where
  1496.     x is the x-axis coordinate as a floating point number
  1497.     y is the y-axis coordinate as a floating point number
  1498. </programlisting>
  1499. </para>
  1500. </sect2>
  1501. <sect2>
  1502. <title>Line Segment</title>
  1503. <para>
  1504. Line segments (lseg) are represented by pairs of points.
  1505. </para>
  1506. <para>
  1507. <type>lseg</type> is specified using the following syntax:
  1508. <programlisting>
  1509. ( ( x1 , y1 ) , ( x2 , y2 ) )
  1510.   ( x1 , y1 ) , ( x2 , y2 )  
  1511.     x1 , y1   ,   x2 , y2    
  1512. where
  1513.     (x1,y1) and (x2,y2) are the endpoints of the segment
  1514. </programlisting>
  1515. </para>
  1516. </sect2>
  1517. <sect2>
  1518. <title>Box</title>
  1519. <para>
  1520. Boxes are represented by pairs of points which are opposite
  1521. corners of the box.
  1522. </para>
  1523. <para>
  1524.      <type>box</type> is specified using the following syntax:
  1525. <programlisting>
  1526. ( ( x1 , y1 ) , ( x2 , y2 ) )
  1527.   ( x1 , y1 ) , ( x2 , y2 )  
  1528.     x1 , y1   ,   x2 , y2    
  1529. where
  1530.     (x1,y1) and (x2,y2) are opposite corners
  1531. </programlisting>
  1532. Boxes are output using the first syntax.
  1533. The corners are reordered on input to store
  1534. the lower left corner first and the upper right corner last.
  1535. Other corners of the box can be entered, but the lower
  1536. left and upper right corners are determined from the input and stored.
  1537. </para>
  1538. </sect2>
  1539. <sect2>
  1540. <title>Path</title>
  1541. <para>
  1542. Paths are represented by connected sets of points. Paths can be "open", where
  1543. the first and last points in the set are not connected, and "closed",
  1544. where the first and last point are connected. Functions
  1545. <function>popen(p)</function>
  1546. and
  1547. <function>pclose(p)</function>
  1548. are supplied to force a path to be open or closed, and functions
  1549. <function>isopen(p)</function>
  1550. and
  1551. <function>isclosed(p)</function>
  1552. are supplied to select either type in a query.
  1553. </para>
  1554. <para>
  1555. path is specified using the following syntax:
  1556. <programlisting>
  1557. ( ( x1 , y1 ) , ... , ( xn , yn ) )
  1558. [ ( x1 , y1 ) , ... , ( xn , yn ) ]
  1559.   ( x1 , y1 ) , ... , ( xn , yn )  
  1560.   ( x1 , y1   , ... ,   xn , yn )  
  1561.     x1 , y1   , ... ,   xn , yn    
  1562. where
  1563.     (x1,y1),...,(xn,yn) are points 1 through n
  1564.     a leading "[" indicates an open path
  1565.     a leading "(" indicates a closed path
  1566. </programlisting>
  1567. Paths are output using the first syntax.
  1568. Note that <productname>Postgres</productname> versions prior to
  1569. v6.1 used a format for paths which had a single leading parenthesis, 
  1570. a "closed" flag,
  1571. an integer count of the number of points, then the list of points followed by a
  1572. closing parenthesis. 
  1573. The built-in function <function>upgradepath</function> is supplied to convert
  1574. paths dumped and reloaded from pre-v6.1 databases.
  1575. </para>
  1576. </sect2>
  1577. <sect2>
  1578. <title>Polygon</title>
  1579. <para>
  1580. Polygons are represented by sets of points. Polygons should probably be
  1581. considered equivalent to closed paths, but are stored differently 
  1582. and have their own set of support routines.
  1583. </para>
  1584. <para>
  1585. <type>polygon</type> is specified using the following syntax:
  1586. <programlisting>
  1587. ( ( x1 , y1 ) , ... , ( xn , yn ) )
  1588.   ( x1 , y1 ) , ... , ( xn , yn )  
  1589.   ( x1 , y1   , ... ,   xn , yn )  
  1590.     x1 , y1   , ... ,   xn , yn    
  1591. where
  1592.     (x1,y1),...,(xn,yn) are points 1 through n
  1593. </programlisting>
  1594. Polygons are output using the first syntax.
  1595. Note that <productname>Postgres</productname> versions prior to
  1596. v6.1 used a format for polygons which had a single leading parenthesis, the list
  1597. of x-axis coordinates, the list of y-axis coordinates, 
  1598. followed by a closing parenthesis.
  1599. The built-in function <function>upgradepoly</function> is supplied to convert
  1600. polygons dumped and reloaded from pre-v6.1 databases.
  1601. </para>
  1602. </sect2>
  1603. <sect2>
  1604. <title>Circle</title>
  1605. <para>
  1606. Circles are represented by a center point and a radius.
  1607. </para>
  1608. <para>
  1609. circle is specified using the following syntax:
  1610. <programlisting>
  1611. < ( x , y ) , r >
  1612. ( ( x , y ) , r )
  1613.   ( x , y ) , r  
  1614.     x , y   , r  
  1615. where
  1616.     (x,y) is the center of the circle
  1617.     r is the radius of the circle
  1618. </programlisting>
  1619. Circles are output using the first syntax.
  1620. </para>
  1621. </sect2>
  1622. </sect1>
  1623. <sect1>
  1624. <title>IP Version 4 Networks and Host Addresses</title>
  1625. <para>
  1626. The <type>cidr</type> type stores networks specified 
  1627. in <acronym>CIDR</acronym> (Classless Inter-Domain Routing) notation.
  1628. The <type>inet</type> type stores hosts and networks in CIDR notation using a simple
  1629. variation in representation to represent simple host TCP/IP addresses.
  1630. </para>
  1631. <para>
  1632. <table tocentry="1">
  1633. <title><productname>Postgres</productname>IP Version 4 Types</title>
  1634. <titleabbrev>IPV4</titleabbrev>
  1635. <tgroup cols="4">
  1636. <thead>
  1637.   <row>
  1638.     <entry>IPV4 Type</entry>
  1639.     <entry>Storage</entry>
  1640.     <entry>Description</entry>
  1641.     <entry>Range</entry>
  1642.   </row>
  1643. </thead>
  1644. <tbody>
  1645.   <row>
  1646.     <entry>cidr</entry>
  1647.     <entry>variable</entry>
  1648.     <entry>CIDR networks</entry>
  1649.     <entry>Valid IPV4 CIDR blocks</entry>
  1650.   </row>
  1651.   <row>
  1652.     <entry>inet</entry>
  1653.     <entry>variable</entry>
  1654.     <entry>nets and hosts</entry>
  1655.     <entry>Valid IPV4 CIDR blocks</entry>
  1656.   </row>
  1657. </tbody>
  1658. </tgroup>
  1659. </table>
  1660. </para>
  1661. <sect2>
  1662. <title>CIDR</title>
  1663. <para>
  1664. The <type>cidr</type> type holds a CIDR network.
  1665. The format for specifying classless networks is <replaceable class="parameter">x.x.x.x/y</replaceable>
  1666.  where <replaceable class="parameter">x.x.x.x</replaceable> is the
  1667. network and <replaceable class="parameter">/y</replaceable> is the number of bits in the netmask.
  1668. If <replaceable class="parameter">/y</replaceable> omitted, it is calculated using assumptions from
  1669. the older classfull naming system except that it is extended to include at least
  1670. all of the octets in the input.
  1671. </para>
  1672. <para> 
  1673. Here are some examples:
  1674.      <table tocentry="1">
  1675.       <title><productname>Postgres</productname>IP Types Examples</title>
  1676.       <tgroup cols="2">
  1677.        <thead> 
  1678. <row> 
  1679.  <entry>CIDR Input</entry>
  1680.  <entry>CIDR Displayed</entry>
  1681. </row>
  1682.        </thead>
  1683.        <tbody>
  1684. <row>
  1685.  <entry>192.168.1</entry>
  1686.  <entry>192.168.1/24</entry>
  1687. </row>
  1688. <row>
  1689.  <entry>192.168</entry>
  1690.  <entry>192.168.0/24</entry>
  1691. </row>
  1692. <row>
  1693.  <entry>128.1</entry>
  1694.  <entry>128.1/16</entry>
  1695. </row>
  1696. <row>
  1697.  <entry>128</entry>
  1698.  <entry>128.0/16</entry>
  1699. </row>
  1700. <row>
  1701.  <entry>128.1.2</entry>
  1702.  <entry>128.1.2/24</entry>
  1703. </row>
  1704. <row>
  1705.  <entry>10.1.2</entry>
  1706.  <entry>10.1.2/24</entry>
  1707. </row>
  1708. <row>
  1709.  <entry>10.1</entry>
  1710.  <entry>10.1/16</entry>
  1711. </row>
  1712. <row>
  1713.  <entry>10</entry>
  1714.  <entry>10/8</entry>
  1715. </row>
  1716.        </tbody>
  1717.       </tgroup>
  1718.      </table>
  1719.     </para>
  1720.    </sect2>
  1721.    <sect2>
  1722.     <title id="inet-type"><type>inet</type></title>
  1723. <para>
  1724. The <type>inet</type> type is designed to hold, in one field, all of the information
  1725. about a host including the CIDR-style subnet that it is in.
  1726. Note that if you want to store proper CIDR networks,
  1727. you should use the <type>cidr</type> type.
  1728. The <type>inet</type> type is similar to the <type>cidr</type> type except that the bits in the
  1729. host part can be non-zero.
  1730. Functions exist to extract the various elements of the field.
  1731. </para>
  1732. <para>  
  1733.      The input format for this function is
  1734.  <replaceable class="parameter">x.x.x.x/y</replaceable> 
  1735. where <replaceable class="parameter">x.x.x.x</replaceable> is
  1736. an internet host and <replaceable class="parameter">y</replaceable> 
  1737. is the number of bits in the netmask.
  1738. If the <replaceable class="parameter">/y</replaceable> part is left off, 
  1739. it is treated as <literal>/32</literal>.
  1740. On output, the <replaceable class="parameter">/y</replaceable> part is not printed 
  1741. if it is <literal>/32</literal>.
  1742. This allows the type to be used as a straight host type by just leaving off
  1743. the bits part.
  1744. </para></sect2>
  1745. </sect1>
  1746. </chapter>
  1747. <!-- Keep this comment at the end of the file
  1748. Local variables:
  1749. mode: sgml
  1750. sgml-omittag:nil
  1751. sgml-shorttag:t
  1752. sgml-minimize-attributes:nil
  1753. sgml-always-quote-attributes:t
  1754. sgml-indent-step:1
  1755. sgml-indent-data:t
  1756. sgml-parent-document:nil
  1757. sgml-default-dtd-file:"./reference.ced"
  1758. sgml-exposed-tags:nil
  1759. sgml-local-catalogs:"/usr/lib/sgml/catalog"
  1760. sgml-local-ecat-files:nil
  1761. End:
  1762. -->