TIMESTAMP(4) WITH TIME ZONE : Timestamp « Date Timezone « Oracle PL / SQL






TIMESTAMP(4) WITH TIME ZONE



SQL>
SQL> CREATE TABLE purchases_timestamp_with_tz (
  2    product_id INTEGER,
  3    customer_id INTEGER,
  4    made_on TIMESTAMP(4) WITH TIME ZONE
  5  );

Table created.

SQL>
SQL> INSERT INTO purchases_timestamp_with_tz (product_id, customer_id, made_on)
  2                                   VALUES (1, 1, TIMESTAMP '2005-05-13 07:15:31.1234 -07:00');

1 row created.

SQL>
SQL> INSERT INTO purchases_timestamp_with_tz (product_id, customer_id, made_on)
  2                                   VALUES (1, 2, TIMESTAMP '2005-05-13 07:15:31.1234 PST');

1 row created.

SQL>
SQL> SELECT * FROM purchases_timestamp_with_tz;

PRODUCT_ID CUSTOMER_ID MADE_ON
---------- ----------- ---------------------------------------------------------------------------
         1           1 13-MAY-05 07.15.31.1234 AM -07:00
         1           2 13-MAY-05 07.15.31.1234 AM PST

SQL>
SQL>
SQL> drop table purchases_timestamp_with_tz;

Table dropped.

SQL>
           
       








Related examples in the same category

1.TIMESTAMP specifies a precision for the SECONDS field in a TIMESTAMP column (the DATE data type can only store whole seconds).
2.Use the Timestamp data type in a table and insert data
3.Compare data and timestamp
4.INSERT statement adds a row with the TIMESTAMP keyword to supply a datetime literals
5.Use the TIMESTAMP type to define a column in a table
6.TIMESTAMP WITH TIME ZONE type extends TIMESTAMP to allow you to store a time zone
7.Cast string to TIMESTAMP
8.Use TIMESTAMP to mark string in insert statement
9.TIMESTAMP WITH LOCAL TIME ZONE
10.Use timestamp as table column type and insert sysdate to it
11.Create a table with two columns: 'timestamp with time zone', 'c2 timestamp with local time zone'