Home
Oracle PL / SQL
Aggregate Functions
Analytical Functions
Char Functions
Constraints
Conversion Functions
Cursor
Data Type
Date Timezone
Hierarchical Query
Index
Insert Delete Update
Large Objects
Numeric Math Functions
Object Oriented Database
PL SQL
Regular Expressions
Report Column Page
Result Set
Select Query
Sequence
SQL Plus
Stored Procedure Function
Subquery
System Packages
System Tables Views
Table
Table Joins
Trigger
User Previliege
View
XML
Timestamp « Date Timezone « Oracle PL / SQL
Oracle PL / SQL
Date Timezone
Timestamp
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.
Cast string to TIMESTAMP
9.
Use TIMESTAMP to mark string in insert statement
10.
TIMESTAMP WITH LOCAL TIME ZONE
11.
Use timestamp as table column type and insert sysdate to it
12.
Create a table with two columns: 'timestamp with time zone', 'c2 timestamp with local time zone'