Cast string to TIMESTAMP : Timestamp « Date Timezone « Oracle PL / SQL

Home
Oracle PL / SQL
1.Aggregate Functions
2.Analytical Functions
3.Char Functions
4.Constraints
5.Conversion Functions
6.Cursor
7.Data Type
8.Date Timezone
9.Hierarchical Query
10.Index
11.Insert Delete Update
12.Large Objects
13.Numeric Math Functions
14.Object Oriented Database
15.PL SQL
16.Regular Expressions
17.Report Column Page
18.Result Set
19.Select Query
20.Sequence
21.SQL Plus
22.Stored Procedure Function
23.Subquery
24.System Packages
25.System Tables Views
26.Table
27.Table Joins
28.Trigger
29.User Previliege
30.View
31.XML
Oracle PL / SQL » Date Timezone » Timestamp 




Cast string to TIMESTAMP
 
SQL>
SQL> create table MyTable (
  2      title   varchar2(100),
  3      phone   varchar2(20),
  4      place   varchar2(100),
  5      starts  timestamp with time zone);

Table created.

SQL>
SQL> insert into MyTable (title, phone, place, starts)
  2  values ('Sales', '999.123.4567', 'Washington',TIMESTAMP '2001-12-01 15:00:00.000000 EST');

row created.

SQL>
SQL> insert into MyTable (title, phone, place, starts)
  2  values ('Product', '000.123.4567', 'San Francisco',TIMESTAMP '2001-12-01 17:00:00.000000 PST');

row created.

SQL>
SQL> insert into MyTable (title, phone, place, starts)
  2  values ('Highlights', '111 1234 5678', 'London', TIMESTAMP '2001-12-01 20:00:00.000000 GMT');

row created.

SQL>
SQL> select dbtimezone from dual;

DBTIME
------
+00:00

SQL>
SQL> select title, phone
  2  from MyTable
  3  where starts = TIMESTAMP '2001-12-01 15:00:00.000000 -5:00';

TITLE                                                                                                PHONE
---------------------------------------------------------------------------------------------------- --------------------
Sales                                                                                                999.123.4567
Highlights                                                                                           111 1234 5678

SQL>
SQL>
SQL> drop table MyTable;

Table dropped.

SQL>
SQL>
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.TIMESTAMP(4) WITH TIME ZONE
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'
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.