TIMESTAMP specifies a precision for the SECONDS field in a TIMESTAMP column (the DATE data type can only store whole seconds). : Timestamp « Date Timezone « Oracle PL / SQL






TIMESTAMP specifies a precision for the SECONDS field in a TIMESTAMP column (the DATE data type can only store whole seconds).

 
SQL>
SQL> create table other_MyTable (
  2        event_name         varchar2( 100 ),
  3        event_date         date,
  4        event_timestamp timestamp );

Table created.

SQL>
SQL> insert into other_MyTable( event_name, event_date, event_timestamp ) values( 'A', sysdate, sysdate );

1 row created.

SQL>
SQL> column event_name      format a28
SQL> column event_date      format a18
SQL> column event_timestamp format a28
SQL>
SQL> select event_name, to_char(event_date, 'DD-MON-YY HH24:MI:SS') event_date, event_timestamp
  2  from other_MyTable;

EVENT_NAME                   EVENT_DATE         EVENT_TIMESTAMP
---------------------------- ------------------ ----------------------------
A                            10-JUN-08 17:06:23 10-JUN-08 05.06.23.000000 PM

SQL>
SQL> drop table other_MyTable;

Table dropped.

 








Related examples in the same category

1.Use the Timestamp data type in a table and insert data
2.Compare data and timestamp
3.INSERT statement adds a row with the TIMESTAMP keyword to supply a datetime literals
4.Use the TIMESTAMP type to define a column in a table
5.TIMESTAMP WITH TIME ZONE type extends TIMESTAMP to allow you to store a time zone
6.TIMESTAMP(4) WITH 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'