Oracle9i SQL Reference
Release 1 (9.0.1)

Part Number A90125-01
Go To Documentation Library
Home
Go To Product List
Book List
Go To Table Of Contents
Contents
Go To Index
Index

Master Index

Feedback

Go to previous page Go to beginning of chapter Go to next page

Functions, 135 of 166


TO_DSINTERVAL

Syntax

to_dsinterval::=


Text description of functions63a.gif follows
Text description of to_dsinterval

Purpose

TO_DSINTERVAL converts a character string of CHAR, VARCHAR2, NCHAR, or NVARCHAR2 datatype to an INTERVAL DAY TO SECOND type.

Example

The following example selects from the employees table the employees who had already worked for the company for at least 100 days on January 1, 1985:

SELECT employee_id, last_name FROM employees
   WHERE hire_date - TO_DSINTERVAL('100 10:00:00')
   > DATE '1985-01-01';

EMPLOYEE_ID LAST_NAME
----------- ---------------
        100 King
        101 Kochhar
        102 De Haan

Go to previous page Go to beginning of chapter Go to next page
Oracle
Copyright © 1996-2001, Oracle Corporation.

All Rights Reserved.
Go To Documentation Library
Home
Go To Product List
Book List
Go To Table Of Contents
Contents
Go To Index
Index

Master Index

Feedback